ReportBuilder.GetSettings

Syntax:

GetSettings(<Filter>, <Order>, <Dimensions>, <SelectedFields>, <ConditionalAppearance>)

Parameters:

<Filter> (optional)

Type: Boolean.
A flag that indicates that it is necessary to get the filter.
Default value: True.

<Order> (optional)

Type: Boolean.
A flag that indicates that it is necessary to get the order.
Default value: True.

<Dimensions> (optional)

Type: Boolean.
A flag that indicates that it is necessary to get the dimension settings.
Default value: True.

<SelectedFields> (optional)

Type: Boolean.
A flag that indicates that it is necessary to get the selected fields.
Default value: True.

<ConditionalAppearance> (optional)

Type: Boolean.
A flag that indicates that it is necessary to get conditional appearance.
Default value: True.

Returned value:

Type: ReportBuilderSettings.

Description:

Obtains the current settings of the report builder.

Availability:

Server, thick client, external connection.

Example:

SetStructure = New Structure;
Settings = ReportBuilder.GetSettings(True,False);
Parameters = ReportBuilder.Parameters;
SetStructure.Insert("BuilderSettings",Settings);
SetStructure.Insert("BuilderParameteres",Parameters);
DataStorage = New ValueStorage(SetStructure);


    

1C:Enterprise Developer's Community