Skip to content

Commit e6b0056

Browse files
author
epolevikov
committed
Upd
2 parents 46125fb + 9a92149 commit e6b0056

File tree

205 files changed

+1071
-741
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

205 files changed

+1071
-741
lines changed

interface-elements-for-desktop/articles/report-designer/report-designer-for-winforms.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ The Report Designer allows you to create data-bound reports and provides a rich
1717
* [Create Reports](report-designer-for-winforms/create-reports.md)
1818
* [Configure Design Settings](report-designer-for-winforms/configure-design-settings.md)
1919
* [Use Report Elements](report-designer-for-winforms/use-report-elements.md)
20+
* [Use Report Parameters](report-designer-for-winforms/use-report-parameters.md)
2021
* [Shape Report Data](report-designer-for-winforms/shape-report-data.md)
2122
* [Lay out Dynamic Report Content](report-designer-for-winforms/lay-out-dynamic-report-content.md)
2223
* [Customize Appearance](report-designer-for-winforms/customize-appearance.md)

interface-elements-for-desktop/articles/report-designer/report-designer-for-winforms/bind-to-data/bind-a-report-to-an-object-data-source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This tutorial describes how to bind a report to an object data source:
3333

3434
8. The next wizard page allows you to specify the constructor parameters.
3535

36-
Enabling the checkbox in the **Expression** column allows you to specify the parameter expression (using the **Expression Editor**), as well as pass an existing [report parameter](../shape-report-data/use-report-parameters.md) to the constructor (or create a new report parameter using the in-place editor).
36+
Enabling the checkbox in the **Expression** column allows you to specify the parameter expression (using the **Expression Editor**), as well as pass an existing [report parameter](../use-report-parameters.md) to the constructor (or create a new report parameter using the in-place editor).
3737

3838
![](../../../../images/eurd-win-data-source-wizard-object-constructor-parameters.png)
3939

interface-elements-for-desktop/articles/report-designer/report-designer-for-winforms/bind-to-data/bind-a-report-to-json-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This topic describes how to bind a report to JSON data.
4949

5050
![JSON-specify-parameter-expression](../../../../images/eurd-win-JSON-path-parameter-specify-expression.png)
5151

52-
- Expressions can include [report parameters](../shape-report-data/use-report-parameters.md). Select **New Report Parameter** from the **Value** property's drop-down list, configure the report parameter in the invoked **Report Parameter** dialog, and click **OK**.
52+
- Expressions can include [report parameters](../use-report-parameters.md). Select **New Report Parameter** from the **Value** property's drop-down list, configure the report parameter in the invoked **Report Parameter** dialog, and click **OK**.
5353

5454
![JSON-add-report-parameter](../../../../images/eurd-win-JSON-add-report-parameter.png)
5555

interface-elements-for-desktop/articles/report-designer/report-designer-for-winforms/bind-to-data/data-binding-modes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Report Designer works in one of the following data binding modes:
88

99
* **Expressions** is the default binding mode.
1010

11-
This mode enables you to specify complex [expressions](../use-expressions.md) that include two or more data fields, [report parameters](../shape-report-data/use-report-parameters.md), or [functions](../use-expressions/expression-syntax.md). You can also use expressions to [calculate summaries](../shape-report-data/calculate-summaries/calculate-a-summary.md) of any complexity or [conditionally shape your data](../shape-report-data/specify-conditions-for-report-elements.md).
11+
This mode enables you to specify complex [expressions](../use-expressions.md) that include two or more data fields, [report parameters](../use-report-parameters.md), or [functions](../use-expressions/expression-syntax.md). You can also use expressions to [calculate summaries](../shape-report-data/calculate-summaries/calculate-a-summary.md) of any complexity or [conditionally shape your data](../shape-report-data/specify-conditions-for-report-elements.md).
1212

1313
Click a property's marker to see whether the invoked context menu has the **PropertyName Expression** item that invokes the **Expression Editor**.
1414

interface-elements-for-desktop/articles/report-designer/report-designer-for-winforms/bind-to-data/specify-query-parameters.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The following properties are available for each query parameter:
5151
* **Name** - specifies the parameter's name.
5252
* **Type** - specifies the parameter value's data type.
5353
* **Expression** - determines whether the actual parameter value is static or generated dynamically.
54-
* **Value** - determines the query parameter's actual value. If the **Expression** option is enabled, the actual parameter value is produced dynamically by calculating an associated expression. This is useful when you map the query parameter value to the [report parameter](../shape-report-data/use-report-parameters.md) value. Refer to the next document section for more information.
54+
* **Value** - determines the query parameter's actual value. If the **Expression** option is enabled, the actual parameter value is produced dynamically by calculating an associated expression. This is useful when you map the query parameter value to the [report parameter](../use-report-parameters.md) value. Refer to the next document section for more information.
5555

5656
## <a name="providevalue"></a>Provide the Query Parameter Value
5757
Below, you can see how a value is specified for a query parameter within the Data Source Wizard's page. You can also specify query parameter values in the Report Wizard or the Query Parameters dialog in the same way.
@@ -89,12 +89,12 @@ Below, you can see how a value is specified for a query parameter within the Dat
8989
![](../../../../images/eurd-win-query-parameters-existing-report-parameter.png)
9090

9191
## <a name="PassMultiValueParameterValueToQuery"></a>Pass a Multi-Value Parameter Value to a Query
92-
You can map [multi-value parameters](../shape-report-data/use-report-parameters/multi-value-report-parameters.md) to query parameters. For instance, the following query selects the orders whose IDs can be found within the values the _\@OrderID_ query parameter provides.
92+
You can map [multi-value parameters](../use-report-parameters/multi-value-report-parameters.md) to query parameters. For instance, the following query selects the orders whose IDs can be found within the values the _\@OrderID_ query parameter provides.
9393

9494
![](../../../../images/eurd-win-query-parameters-map-to-multi-value-parameter.png)
9595

9696
## <a name="multivalueparameterinstoredprocedure"></a>Pass a Multi-Value Report Parameter Value to a Stored Procedure
97-
You cannot pass a [multi-value parameter](../shape-report-data/use-report-parameters/multi-value-report-parameters.md) value to a stored procedure directly. Use one of the following expression functions:
97+
You cannot pass a [multi-value parameter](../use-report-parameters/multi-value-report-parameters.md) value to a stored procedure directly. Use one of the following expression functions:
9898

9999
* Use the [Join() expression function](../use-expressions/expression-syntax.md) to convert the array of parameter values to a string if you use MS SQL Server, MySQL or Oracle database systems.
100100

interface-elements-for-desktop/articles/report-designer/report-designer-for-winforms/create-reports.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ You can add interactive elements to your report to customize it in Print Preview
5959
> [!Note]
6060
> See the [Provide Interactivity](provide-interactivity.md) section for information on how to provide drill-down and drill-through functionality in your reports.
6161
>
62-
> See [Use Report Parameters](shape-report-data/use-report-parameters.md) for instructions on how to submit parameter values in Print Preview to customize your reports.
62+
> See [Use Report Parameters](use-report-parameters.md) for instructions on how to submit parameter values in Print Preview to customize your reports.
6363
6464
## Layout Features
6565

interface-elements-for-desktop/articles/report-designer/report-designer-for-winforms/provide-interactivity/edit-content-in-print-preview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The sections below provide information about options these controls expose. You
3636
* Changes made to a control's content in Print Preview does not effect the document's other parts (for example, summary results, grouping, sorting, bookmarks and other settings that were processed before the document was generated).
3737
* A control's **Can Grow** setting is ignored for editable fields. The edited area cannot exceed the control's original dimensions.
3838
* Multi-line values can only be entered when no mask is applied to an editable field.
39-
* Values entered into editable fields are reset after the document is refreshed (for example, when you submit [report parameter](..\shape-report-data\use-report-parameters.md) values or expand/collapse data in a [drill-down report](create-drill-down-reports.md)).
39+
* Values entered into editable fields are reset after the document is refreshed (for example, when you submit [report parameter](../use-report-parameters.md) values or expand/collapse data in a [drill-down report](create-drill-down-reports.md)).
4040
* It is not possible to edit content in bands if their **DrillDownControl** property is specified.
4141
* The entered values are not preserved in the Top Margin and Bottom Margin bands when the report is exported as a single file to the following formats:
4242

interface-elements-for-desktop/articles/report-designer/report-designer-for-winforms/report-designer-tools/data-source-wizard/connect-to-a-database/configure-query-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A parameter value can be specified in one of the following ways.
1212
* Parameters can be assigned static values (according to the specified parameter type), which is illustrated in the following image.
1313

1414
![eurd-win-data-source-wizard-multi-query-configure-parameters-static-values-date-time](../../../../../../images/eurd-win-data-source-wizard-multi-query-configure-parameters-static-values-date-time.png)
15-
* Alternatively, you can link a query or stored procedure parameter to a [report parameter](../../../shape-report-data/use-report-parameters.md), whose value can be requested each time before the report document is to be previewed or exported. To do this, enable the **Expression** check box and select an existing report parameter of the corresponding type or create a new one.
15+
* Alternatively, you can link a query or stored procedure parameter to a [report parameter](../../../use-report-parameters.md), whose value can be requested each time before the report document is to be previewed or exported. To do this, enable the **Expression** check box and select an existing report parameter of the corresponding type or create a new one.
1616

1717
![eurd-win-report-wizard-page-multi-query-parameters](../../../../../../images/eurd-win-report-wizard-page-multi-query-parameters.png)
1818
* Another option is to calculate a parameter value based on an expression. To do this, enable the **Expression** check box and run the **Expression Editor**.

interface-elements-for-desktop/articles/report-designer/report-designer-for-winforms/report-designer-tools/data-source-wizard/connect-to-an-entity-framework-data-source/configure-filters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The **Filter Editor** is displayed after choosing an entity on this wizard page.
99

1010
![eurd-win-ef-datasource-configure-filters-editor-report-parameter](../../../../../../images/eurd-win-ef-datasource-configure-filters-editor-report-parameter.png)
1111

12-
Use this editor to define the selected entity's filter criteria. The filter string can also reference [report parameters](../../../shape-report-data/use-report-parameters.md).
12+
Use this editor to define the selected entity's filter criteria. The filter string can also reference [report parameters](../../../use-report-parameters.md).
1313

1414
![eurd-win-ef-datasource-configure-filters-finish](../../../../../../images/eurd-win-ef-datasource-configure-filters-finish.png)
1515

interface-elements-for-desktop/articles/report-designer/report-designer-for-winforms/report-designer-tools/data-source-wizard/connect-to-an-object-data-source/specify-the-constructor-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ title: Specify the Constructor Parameters
55

66
On this wizard page, specify the constructor parameters.
77

8-
To specify the constructor parameter's value, use the **Value** column. Enable the check box in the **Expression** column to make it possible to specify the parameter expression using the **Expression Editor**. In this case, you can pass an existing [report parameter](../../../shape-report-data/use-report-parameters.md) to the constructor or even create a new report parameter using the in-place editor.
8+
To specify the constructor parameter's value, use the **Value** column. Enable the check box in the **Expression** column to make it possible to specify the parameter expression using the **Expression Editor**. In this case, you can pass an existing [report parameter](../../../use-report-parameters.md) to the constructor or even create a new report parameter using the in-place editor.
99

1010
![RD_ReportWizard_ObjConstructorParameters](../../../../../../images/eurd-win-data-access-object-binding-specify-constructor-parameters.png)

0 commit comments

Comments
 (0)