-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathen.ext.xml
More file actions
2389 lines (2389 loc) · 187 KB
/
en.ext.xml
File metadata and controls
2389 lines (2389 loc) · 187 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Localization language="English" description="English" cultureName="en">
<CheckActions>
<ApplyEngineV2Long>Set the EngineVersion property of a page to EngineV2 to get access to all reporting tool features.</ApplyEngineV2Long>
<Change>Change</Change>
<ChangeReportToInterpretationMode>Change the report to the interpretation mode</ChangeReportToInterpretationMode>
<Code>Code</Code>
<Convert>Convert</Convert>
<Delete>Delete</Delete>
<Edit>Edit</Edit>
<Fix>Fix</Fix>
<GotoCodeLong>Go to code.</GotoCodeLong>
<Hide>Hide these messages.</Hide>
<NewName>New name</NewName>
<Off>Off</Off>
<On>On</On>
<SetGrowToHeightToFalse>Set the GrowToHeight property to false</SetGrowToHeightToFalse>
<SetGrowToHeightToTrue>Set the GrowToHeight property to true</SetGrowToHeightToTrue>
<StiAllowHtmlTagsInTextActionLong>Set the value of the AllowHtmlTags property of the component to true, for correct showing the HTML tags.</StiAllowHtmlTagsInTextActionLong>
<StiAllowOnDoublePassActionLong>Set the NumberOfPass property to DoublePass for correct calculation of variables.</StiAllowOnDoublePassActionLong>
<StiApplyGeneralTextFormatLong>Set the 'General' format for the '{0}' component.</StiApplyGeneralTextFormatLong>
<StiApplyGeneralTextFormatShort>Apply General</StiApplyGeneralTextFormatShort>
<StiCanBreakComponentInContainerActionLong>Set the value of the CanBreak property of the component to true.</StiCanBreakComponentInContainerActionLong>
<StiCanGrowComponentInContainerActionLong>Set the value of the CanGrow property of the container to true.</StiCanGrowComponentInContainerActionLong>
<StiCanGrowGrowToHeightComponentInContainerLong>The GrowToHeight property will be set to true for all components in container. This operation does not guarantee the 100% correct fix!</StiCanGrowGrowToHeightComponentInContainerLong>
<StiCanGrowWordWrapTextAndWysiwygActionLong>Set the value of the TextQuality property of the component to WYSIWYG.</StiCanGrowWordWrapTextAndWysiwygActionLong>
<StiColumnsWidthGreaterContainerWidthActionLong>Automatically change the column width depending on the width of the components.</StiColumnsWidthGreaterContainerWidthActionLong>
<StiComponentStyleIsNotFoundOnComponentActionLong>The value of the ComponentStyle property will be cleared.</StiComponentStyleIsNotFoundOnComponentActionLong>
<StiDeleteComponentActionLong>Delete the component from the report.</StiDeleteComponentActionLong>
<StiDeleteConnectionActionLong>Delete the connection from the report.</StiDeleteConnectionActionLong>
<StiDeleteDataRelationActionLong>Delete the relation from the report.</StiDeleteDataRelationActionLong>
<StiDeleteDataSourceActionLong>Delete the Data Source from the report.</StiDeleteDataSourceActionLong>
<StiDeleteLostPointsActionLong>Delete all lost points on a page</StiDeleteLostPointsActionLong>
<StiDeletePageActionLong>Delete the page from the report.</StiDeletePageActionLong>
<StiFixCrossLinePrimitiveActionLong>Create new points instead of the lost ones. This operation does not guarantee the 100% correct fix!</StiFixCrossLinePrimitiveActionLong>
<StiGenerateNewNameComponentActionLong>Generate a new name for the component.</StiGenerateNewNameComponentActionLong>
<StiGenerateNewNameDataSourceActionLong>Generate a new name for the Data Source.</StiGenerateNewNameDataSourceActionLong>
<StiGenerateNewNamePageActionLong>Generate a new name for the page.</StiGenerateNewNamePageActionLong>
<StiGenerateNewNameRelationActionLong>Generate a new name for the relation.</StiGenerateNewNameRelationActionLong>
<StiGenerateNewNameVariableActionLong>Generate a new name for the variable.</StiGenerateNewNameVariableActionLong>
<StiGrowToHeightOverlappingLong>Set the value of the GrowToHeight property of the component to false.</StiGrowToHeightOverlappingLong>
<StiInsufficientTextHeightForOneLineLong>The height of the component will increase at least to the height of one line of text or to the next cell of the report grid.</StiInsufficientTextHeightForOneLineLong>
<StiInsufficientTextHeightForOneLineShort>Fix height</StiInsufficientTextHeightForOneLineShort>
<StiLargeHeightAtPageActionLong>For handy viewing and editing components, the LargeHeight property of the page will be set to true.</StiLargeHeightAtPageActionLong>
<StiMinRowsInColumnsActionLong>Set the MinRowsInColumns property to zero.</StiMinRowsInColumnsActionLong>
<StiMoveComponentToPageAreaActionLong>The component will be placed so that it is entirely placed on the page. In this case the page fields are not taken into consideration.</StiMoveComponentToPageAreaActionLong>
<StiMoveComponentToPageAreaActionShort>Move to page</StiMoveComponentToPageAreaActionShort>
<StiMoveComponentToPrintablePageAreaActionLong>Move the component to the page printing area. Page margins will be taken into consideration.</StiMoveComponentToPrintablePageAreaActionLong>
<StiMoveComponentToPrintablePageAreaActionShort>To Print Area</StiMoveComponentToPrintablePageAreaActionShort>
<StiNegativeSizesOfComponentsActionLong>Fix the size of the component to eliminate problems when rendering a report. This operation does not guarantee the 100% correct fix!</StiNegativeSizesOfComponentsActionLong>
<StiOrientationPageToLandscapeActionLong>Switch the page to the landscape. Page size will not be changed.</StiOrientationPageToLandscapeActionLong>
<StiOrientationPageToLandscapeActionShort>Landscape layout</StiOrientationPageToLandscapeActionShort>
<StiOrientationPageToPortraitActionLong>Change the page layout to portrait. Page size will not be changed.</StiOrientationPageToPortraitActionLong>
<StiOrientationPageToPortraitActionShort>Portrait layout</StiOrientationPageToPortraitActionShort>
<StiPrintHeadersFootersFromPreviousPageLong>Set the PrintHeadersFootersFromPreviousPage property of a page to false.</StiPrintHeadersFootersFromPreviousPageLong>
<StiPrintOnPreviousPageLong>Set the PrintOnPreviousPage property of a page to false.</StiPrintOnPreviousPageLong>
<StiPropertiesOnlyEngineV1ActionLong>Disable properties of the '{0}' component which are not supported in the EngineV2.</StiPropertiesOnlyEngineV1ActionLong>
<StiPropertiesOnlyEngineV2ActionLong>Disable properties of the component which are not supported in the EngineV1.</StiPropertiesOnlyEngineV2ActionLong>
<StiResetPageNumberActionLong>Set the ResetPageNumber property of a page to false.</StiResetPageNumberActionLong>
<StiSwitchToParametersVerticalOrientationAction>Switch the value of the 'Parameters Orientation' report property to 'Vertical'.</StiSwitchToParametersVerticalOrientationAction>
<StiSwitchWidthAndHeightOfPageActionLong>Rearrange the height and width of the page.</StiSwitchWidthAndHeightOfPageActionLong>
<StiVerySmallSizesOfComponentsLong>The size of a component will be increased to the GridSize value of a report. This operation does not guarantee the 100% correct fix!</StiVerySmallSizesOfComponentsLong>
<StiVerySmallSizesOfComponentsShort>Increase size</StiVerySmallSizesOfComponentsShort>
<StiWordWrapCanGrowTextDoesNotFitActionLong>Set the value of the CanGrow property of the component to true.</StiWordWrapCanGrowTextDoesNotFitActionLong>
<Zero>Zero</Zero>
</CheckActions>
<CheckComponent>
<StiAllowHtmlTagsInTextCheckLong>HTML tags are used in the text. But the AllowHtmlTags property is set to false. The content of the {0} component will be printed incorrectly.</StiAllowHtmlTagsInTextCheckLong>
<StiAllowHtmlTagsInTextCheckShort>The AllowHtmlTags property is not set</StiAllowHtmlTagsInTextCheckShort>
<StiCanBreakComponentInContainerCheckLong>The CanBreak property of the '{0}' container is set to false. Some nested components have the CanBreak property set to true.</StiCanBreakComponentInContainerCheckLong>
<StiCanBreakComponentInContainerCheckShort>The CanBreak property of the container is set to false</StiCanBreakComponentInContainerCheckShort>
<StiCanGrowComponentInContainerCheckLong>The CanGrow property of the '{0}' component is set to false. Some nested components have the CanGrow property set to true. This may cause to incorrect report rendering.</StiCanGrowComponentInContainerCheckLong>
<StiCanGrowComponentInContainerCheckShort>The CanGrow property of the container is set to false</StiCanGrowComponentInContainerCheckShort>
<StiCanGrowGrowToHeightComponentInContainerLong>The CanGrow properties of some components of the '{0}' container are set to true. But the GrowToHeight property is not set to true for all components. When rendering a report these components may be aligned with the bottom margin of the container.</StiCanGrowGrowToHeightComponentInContainerLong>
<StiCanGrowGrowToHeightComponentInContainerShort>It is possible an incorrect showing of components</StiCanGrowGrowToHeightComponentInContainerShort>
<StiCanGrowWordWrapTextAndWysiwygCheckLong>When the TextQuality property is set to Standard or Typographic. Text preview, in different zoom modes and when printing may differ due to errors of rounding of the GDI+ library.</StiCanGrowWordWrapTextAndWysiwygCheckLong>
<StiCanGrowWordWrapTextAndWysiwygCheckShort>Possibly there will be the incorrect text wrap</StiCanGrowWordWrapTextAndWysiwygCheckShort>
<StiChartSeriesValueCheckLong>The Value property is specified for series from the chart "{0}" but the chart does not have the Data Source property set.</StiChartSeriesValueCheckLong>
<StiColumnsWidthGreaterContainerWidthCheckLong>The total column width is greater then the width of the '{0}' component. This may cause to incorrect report rendering. Also it may cause some problems with exporting a report to other formats.</StiColumnsWidthGreaterContainerWidthCheckLong>
<StiColumnsWidthGreaterContainerWidthCheckShort>The total column width is greater then the component width</StiColumnsWidthGreaterContainerWidthCheckShort>
<StiColumnsWidthGreaterPageWidthCheckLong>The total width of columns of the '{0}' page is greater than the page width. This may cause to incorrect report rendering. Also it may cause some problems with exporting a report to other formats.</StiColumnsWidthGreaterPageWidthCheckLong>
<StiColumnsWidthGreaterPageWidthCheckShort>The total column width is greater than page width</StiColumnsWidthGreaterPageWidthCheckShort>
<StiComponentBoundsAreOutOfBandLong>The '{0}' component is completely or partially outside the band. This component will not be printed correctly. But, in some cases, such position of the component is acceptable. Also it may cause some problems with exporting a report to other formats.</StiComponentBoundsAreOutOfBandLong>
<StiComponentBoundsAreOutOfBandShort>The component is partially outside the band.</StiComponentBoundsAreOutOfBandShort>
<StiComponentExpressionCheckLong>Expression in {0} property of '{1}' can't be evaluated!</StiComponentExpressionCheckLong>
<StiComponentExpressionCheckShort>Expression can't be evaluated!</StiComponentExpressionCheckShort>
<StiComponentNameIsSystemVariableCheckLong>The component name '{0}' conflicts with a system variable name. Expressions using this system variable will not function correctly, as the reference will be replaced by the component reference.</StiComponentNameIsSystemVariableCheckLong>
<StiComponentNameIsSystemVariableCheckShort>The component name conflicts with a system variable name</StiComponentNameIsSystemVariableCheckShort>
<StiComponentResourceCheckLong>The resource '{0}' specified for component '{1}' was not found in the report dictionary.</StiComponentResourceCheckLong>
<StiComponentResourceCheckShort>The specified resource was not found!</StiComponentResourceCheckShort>
<StiComponentStyleIsNotFoundCheckAtPageLong>The style specified for the '{0}' page does not exist.</StiComponentStyleIsNotFoundCheckAtPageLong>
<StiComponentStyleIsNotFoundCheckLong>The style specified for the '{0}' component does not exist.</StiComponentStyleIsNotFoundCheckLong>
<StiComponentStyleIsNotFoundCheckShort>The specified style does not exist</StiComponentStyleIsNotFoundCheckShort>
<StiContainerInEngineV2CheckLong>The '{0}' container is found in the report where the EngineV2 is used. In the EngineV2 the Panel component is used instead of the Container component. The Panel component has more capabilities in compare with the Container.</StiContainerInEngineV2CheckLong>
<StiContainerInEngineV2CheckShort>The container in EngineV2</StiContainerInEngineV2CheckShort>
<StiContourTextObsoleteCheckLong>The '{0}' component has the StiContourText type. The StiContourText component is obsolete and no longer supported, so it is not recommended to use it.</StiContourTextObsoleteCheckLong>
<StiContourTextObsoleteCheckShort>The component is obsolete</StiContourTextObsoleteCheckShort>
<StiCorruptedCrossLinePrimitiveCheckLong>Start and end points of the '{0}' primitive are absent. This primitive either will not be shown or will be shown incorrectly.</StiCorruptedCrossLinePrimitiveCheckLong>
<StiCorruptedCrossLinePrimitiveCheckShort>Corrupted primitive</StiCorruptedCrossLinePrimitiveCheckShort>
<StiCountDataDataSourceAtDataBandLong>The CountData, DataSource and BusinessObject properties are not set for the '{0}' components. In some cases it is acceptable.</StiCountDataDataSourceAtDataBandLong>
<StiCountDataDataSourceAtDataBandShort>May be you forgot to set values of properties</StiCountDataDataSourceAtDataBandShort>
<StiCrossGroupHeaderNotEqualToCrossGroupFooterOnPageLong>The number of CrossGroupFooter does not correspond to the number of CrossGroupHeader on the '{0}' page. Odd components will not be rendered.</StiCrossGroupHeaderNotEqualToCrossGroupFooterOnPageLong>
<StiCrossGroupHeaderNotEqualToGroupCrossFooterOnContainerLong>The number of CrossGroupFooter does not correspond to the number of CrossGroupHeader in the '{0}' container. Odd components will not be rendered.</StiCrossGroupHeaderNotEqualToGroupCrossFooterOnContainerLong>
<StiDataSourcesForImageCheckLong>Several data sources are set for the '{0}' component.</StiDataSourcesForImageCheckLong>
<StiDataSourcesForImageCheckShort>Several data sources are set</StiDataSourcesForImageCheckShort>
<StiEventsAtInterpretationCheckLong>The script in the '{0}' event in the '{1}' component doesn't work in the interpretation mode.</StiEventsAtInterpretationCheckLong>
<StiEventsAtInterpretationCheckShort>Events in Interpretation</StiEventsAtInterpretationCheckShort>
<StiExpressionElementCheckLong>The expression '{0}' in the '{1}' component works incorrectly. The following message was received from the parser: '{2}'.</StiExpressionElementCheckLong>
<StiExpressionElementCheckShort>An expression works incorrectly!</StiExpressionElementCheckShort>
<StiFilterCircularDependencyElementCheckLong>The circular dependency of the filter is found at the element '{0}'. Please check the 'Parent Key' property of the {0} 'element!</StiFilterCircularDependencyElementCheckLong>
<StiFilterCircularDependencyElementCheckShort>Circular filter dependency</StiFilterCircularDependencyElementCheckShort>
<StiFilterValueCheckLong>A filter value of '{0}' is not specified. This filter can't be processed.</StiFilterValueCheckLong>
<StiFilterValueCheckShort>A filter Value is not specified</StiFilterValueCheckShort>
<StiFontMissingCheckLong>The font '{0}' specified for the component '{1}' is not found.</StiFontMissingCheckLong>
<StiFontMissingCheckShort>The font is not found.</StiFontMissingCheckShort>
<StiFunctionsOnlyForEngineV2CheckLong>System variables which are not available in the EngineV1 are used in the report. Do you want to use EngineV2.</StiFunctionsOnlyForEngineV2CheckLong>
<StiFunctionsOnlyForEngineV2CheckShort>Variables unavailable in the EngineV1 are used.</StiFunctionsOnlyForEngineV2CheckShort>
<StiGroupHeaderNotEqualToGroupFooterOnContainerLong>The number of GroupFooter does not correspond to the number of GroupHeader in the '{0}' container. Odd components will not be rendered.</StiGroupHeaderNotEqualToGroupFooterOnContainerLong>
<StiGroupHeaderNotEqualToGroupFooterOnPageLong>The number of GroupFooter does not correspond to the number of GroupHeader on the '{0}' page. Odd components will not be rendered.</StiGroupHeaderNotEqualToGroupFooterOnPageLong>
<StiGroupHeaderNotEqualToGroupFooterShort>Some components will not be rendered</StiGroupHeaderNotEqualToGroupFooterShort>
<StiGroupHeaderSummaryExpressionCheckLong>The Summary Expression for the group header {0} contains an aggregate function, but this function is set in a separate property. Report generation is not possible.</StiGroupHeaderSummaryExpressionCheckLong>
<StiGroupHeaderSummaryExpressionCheckShort>Invalid function in expression</StiGroupHeaderSummaryExpressionCheckShort>
<StiGrowToHeightOverlappingLong>The GrowToHeight property of the '{0}' component is set to true. When rendering a report, this component can overlap one or more underlying components.</StiGrowToHeightOverlappingLong>
<StiGrowToHeightOverlappingShort>It is possible to overlap components.</StiGrowToHeightOverlappingShort>
<StiInsufficientTextHeightForOneLineCheckLong>The height of the text component {0} is too small, even for one line of text. This can cause issues with exporting to some formats, as well as with printing on the Web. It is recommended to increase the height or set the CanGrow property to true.</StiInsufficientTextHeightForOneLineCheckLong>
<StiInsufficientTextHeightForOneLineCheckShort>Insufficient Height for one line.</StiInsufficientTextHeightForOneLineCheckShort>
<StiIsFirstPageIsLastPageDoublePassCheckLong>The IsFirstPage, IsFirstPageThrough, IsLastPage, IsLastPageThrough system variables provide incorrect results when one pass. It is required to set the NumberOfPass property to DoublePass.</StiIsFirstPageIsLastPageDoublePassCheckLong>
<StiIsFirstPageIsLastPageDoublePassCheckShort>System variables which require double pass are used in the report</StiIsFirstPageIsLastPageDoublePassCheckShort>
<StiIsFirstPassIsSecondPassCheckLong>For correct work of IsFirstPass, IsSecondPass functions double pass of the report rendering is required. maybe you forgot to set the NumberOfPass property of the report to DoublePass.</StiIsFirstPassIsSecondPassCheckLong>
<StiIsFirstPassIsSecondPassCheckShort>IsFirstPass, IsSecondPass functions require double pass when rendering a report</StiIsFirstPassIsSecondPassCheckShort>
<StiLargeHeightAtPageCheckLong>Lack of free space on the '{0}' page. This may impede further editing the components and preview. It is recommended to set the LargeHeight property to true.</StiLargeHeightAtPageCheckLong>
<StiLargeHeightAtPageCheckShort>Lack of free space on the page</StiLargeHeightAtPageCheckShort>
<StiLocationOutsidePageCheckLong>The '{0}' component is partially outside of the page. This component will not be printed correctly. Also it may cause some problems with exporting a report to other formats.</StiLocationOutsidePageCheckLong>
<StiLocationOutsidePageCheckShort>The component is partially outside of the page</StiLocationOutsidePageCheckShort>
<StiLocationOutsidePrintableAreaCheckLong>The '{0}' component is partially or completely outside of the printing area. This component will not be printed correctly. But, in some cases, such position of the component is acceptable. Also it may cause some problems with exporting a report to other formats.</StiLocationOutsidePrintableAreaCheckLong>
<StiLocationOutsidePrintableAreaCheckShort>The component is partially out of the printing area</StiLocationOutsidePrintableAreaCheckShort>
<StiMinRowsInColumnsCheckLong>The MinRowsInColumns property of the band is not set to 0. But the value of the Columns property is set to 0. This is senseless.</StiMinRowsInColumnsCheckLong>
<StiMinRowsInColumnsCheckShort>Maybe the MinRowsInColumns property is set incorrectly</StiMinRowsInColumnsCheckShort>
<StiNegativeSizesOfComponentsCheckLong>The Width and Height of the '{0}' component have negative values. This may cause to incorrect report rendering.</StiNegativeSizesOfComponentsCheckLong>
<StiNegativeSizesOfComponentsCheckShort>The Width and Height of the component have negative values.</StiNegativeSizesOfComponentsCheckShort>
<StiNoConditionAtGroupCheckLong>A condition is not set for the '{0}' component. Grouping will not be done without it</StiNoConditionAtGroupCheckLong>
<StiNoConditionAtGroupCheckShort>A condition for the group is not set</StiNoConditionAtGroupCheckShort>
<StiNoNameComponentCheckLong>The component has no name. If to specify the name of the component then the report engine will not be able to compile the report.</StiNoNameComponentCheckLong>
<StiNoNameComponentCheckShort>The component has no name</StiNoNameComponentCheckShort>
<StiNoNamePageCheckLong>The name of the page with the '{0}' index is not specified. If the name of the page is not specified then the report engine will not compile the report.</StiNoNamePageCheckLong>
<StiNoNamePageCheckShort>A page has no name</StiNoNamePageCheckShort>
<StiPageLineAndDoublePassCheckLong>The system variable PageLine requires Double-Pass of the report engine.</StiPageLineAndDoublePassCheckLong>
<StiPageLineAndDoublePassCheckShort>The PageLine requires Double-Pass!</StiPageLineAndDoublePassCheckShort>
<StiPanelInEngineV1CheckLong>The '{0}' panel is found in the report where the EngineV1 is used. This component is not available in the EngineV1. So the reporting tool attempts to render it as a Container component. But the Panel component has more capabilities in compare with the Container and this may cause the incorrect report rendering.</StiPanelInEngineV1CheckLong>
<StiPanelInEngineV1CheckShort>The panel in EngineV1</StiPanelInEngineV1CheckShort>
<StiPrintHeadersAndFootersFromPreviousPageLong>The PrintHeadersAndFootersFromPreviousPage property of the '{0}' page is set to true. But for the first and the only page it has no sense.</StiPrintHeadersAndFootersFromPreviousPageLong>
<StiPrintHeadersAndFootersFromPreviousPageShort>May be the PrintHeadersAndFootersFromPreviousPage property is set incorrectly</StiPrintHeadersAndFootersFromPreviousPageShort>
<StiPrintOnDoublePassCheckLong>The PrintOn property of the '{0}' component is not set to AllPages. For correct report rendering double pass should be enabled.</StiPrintOnDoublePassCheckLong>
<StiPrintOnDoublePassCheckShort>The PrintOn property is not set to AllPages</StiPrintOnDoublePassCheckShort>
<StiPrintOnPreviousPageCheck2Long>The PrintOnPreviousPage property of the '{0}' page is set to true. All components (except bands), which lie on this page will be printed only from the next new page, or may not be printed at all if there will be no new pages.</StiPrintOnPreviousPageCheck2Long>
<StiPrintOnPreviousPageCheck2Short>Some components may not be printed.</StiPrintOnPreviousPageCheck2Short>
<StiPrintOnPreviousPageCheckLong>The PrintOnPreviousPage property of the '{0}' page is set to true. But for the first and the only page it has no sense.</StiPrintOnPreviousPageCheckLong>
<StiPrintOnPreviousPageCheckShort>Maybe the PrintOnPreviousPage property is set incorrectly</StiPrintOnPreviousPageCheckShort>
<StiPropertiesOnlyEngineV1CheckLong>The StartNewPage property of the '{0}' component is supported in the EngineV1 only.</StiPropertiesOnlyEngineV1CheckLong>
<StiPropertiesOnlyEngineV1CheckShort>Some properties are set which are not supported in the EngineV2</StiPropertiesOnlyEngineV1CheckShort>
<StiPropertiesOnlyEngineV2CheckLong>One of the following properties is used for the '{0}' component: NewPageBefore, NewPageAfter, NewColumnBefore, NewColumnAfter, SkipFirst. They are not supported by EngineV2.</StiPropertiesOnlyEngineV2CheckLong>
<StiPropertiesOnlyEngineV2CheckShort>Some properties are set which are not supported in the EngineV1</StiPropertiesOnlyEngineV2CheckShort>
<StiResetPageNumberCheckLong>The ResetPageNumber property of the '{0}' page is set to true. But for the first and the only page it has no sense.</StiResetPageNumberCheckLong>
<StiResetPageNumberCheckShort>Maybe the ResetPageNumber property is set incorrectly</StiResetPageNumberCheckShort>
<StiShowInsteadNullValuesCheckLong>The NullValues property is set for the '{0}' component. But the DataColumn property is not set. This is senseless.</StiShowInsteadNullValuesCheckLong>
<StiShowInsteadNullValuesCheckShort>The NullValues property is set</StiShowInsteadNullValuesCheckShort>
<StiSubReportPageZeroCheckLong>If the SubReportPage property of the SubReport component is not set then the report cannot be rendered.</StiSubReportPageZeroCheckLong>
<StiSubReportPageZeroCheckShort>The SubReportPage property is not set</StiSubReportPageZeroCheckShort>
<StiSystemTextObsoleteCheckLong>The '{0}' component has the StiSystemText type. The StiSystemText component is obsolete and no longer supported, so it is not recommended to use it.</StiSystemTextObsoleteCheckLong>
<StiSystemTextObsoleteCheckShort>The component is obsolete</StiSystemTextObsoleteCheckShort>
<StiTextColorEqualToBackColorCheckLong>Possible reason is that the values of the TextBrush and Brush properties of the '{0}' component were set incorrectly. The text will not be visible.</StiTextColorEqualToBackColorCheckLong>
<StiTextColorEqualToBackColorCheckShort>The TextBrush property is equal to the Brush property</StiTextColorEqualToBackColorCheckShort>
<StiTextTextFormatCheckLong>Selected text format for the '{0}' component can`t be applied, because the result of the expression is text string.</StiTextTextFormatCheckLong>
<StiTextTextFormatCheckShort>The format can`t be applied.</StiTextTextFormatCheckShort>
<StiTextTextFormatFieldCheckLong>The column used in the {0} component is not a date type. Changing the formatting to General is recommended to avoid slowing down the report and to ensure correct formatting.</StiTextTextFormatFieldCheckLong>
<StiTextTextFormatFieldCheckShort>The selected format is not compatible with the data column type.</StiTextTextFormatFieldCheckShort>
<StiTotalPageCountDoublePassCheckLong>The TotalPageCount, TotalPageCountThrough system variables in scripts and conditions provide incorrect results when one pass. It is required to set the NumberOfPass property to DoublePass.</StiTotalPageCountDoublePassCheckLong>
<StiUndefinedComponentCheckLong>Undefined '{0}' component is found in the report. The reporting tool cannot identify this component. Maybe this is a custom component. The report cannot be rendered!</StiUndefinedComponentCheckLong>
<StiUndefinedComponentCheckShort>Undefined component</StiUndefinedComponentCheckShort>
<StiVerySmallSizesOfComponentsCheckLong>The values of the Width of Height of the '{0}' component are less than the values of the GridSize of the report. Maybe you incorrectly set its size. This may cause problems when exporting to other formats.</StiVerySmallSizesOfComponentsCheckLong>
<StiVerySmallSizesOfComponentsCheckShort>Very small size of the component</StiVerySmallSizesOfComponentsCheckShort>
<StiWidthHeightZeroComponentCheckLongHeight>The height of the '{0}' component is zero. This may cause problems with showing this component on a page. It also may cause some problems when exporting the report to other formats.</StiWidthHeightZeroComponentCheckLongHeight>
<StiWidthHeightZeroComponentCheckLongWidth>The width of the '{0}' component is zero. There may be some problems with showing this component on a page. It also may cause some problems when exporting the report to other formats.</StiWidthHeightZeroComponentCheckLongWidth>
<StiWidthHeightZeroComponentCheckLongWidthHeight>The height and width of the '{0}' component are equal to 0. There may be some problems with showing this component on a page. It also may cause some problems when exporting the report to other formats.</StiWidthHeightZeroComponentCheckLongWidthHeight>
<StiWidthHeightZeroComponentCheckShortHeight>The height of the '{0}' component are equal to 0</StiWidthHeightZeroComponentCheckShortHeight>
<StiWidthHeightZeroComponentCheckShortWidth>The width of the '{0}' component are equal to 0</StiWidthHeightZeroComponentCheckShortWidth>
<StiWidthHeightZeroComponentCheckShortWidthHeight>The height and width of the '{0}' component are equal to 0</StiWidthHeightZeroComponentCheckShortWidthHeight>
<StiWordWrapCanGrowTextDoesNotFitLong>If the WordWrap property is set to true, and the CanGrow property is set to false, then the text of the {0} component cannot be shown completely. It is recommended to set the CanGrow property to true.</StiWordWrapCanGrowTextDoesNotFitLong>
<StiWordWrapCanGrowTextDoesNotFitShort>The text may not fit</StiWordWrapCanGrowTextDoesNotFitShort>
</CheckComponent>
<CheckConnection>
<StiUndefinedConnectionCheckLong>Undefined '{0}' connection is found. The reporting tool cannot correctly process such type of connection with the database! May be the customer types of connections are used in the report. This report cannot be rendered!</StiUndefinedConnectionCheckLong>
<StiUndefinedConnectionCheckShort>Undefined type of connection</StiUndefinedConnectionCheckShort>
<StiUnsupportedConnectionCheckLong>The report contains the connection '{0}' that is not supported in the selected platform. Please change the options for this connection.</StiUnsupportedConnectionCheckLong>
<StiUnsupportedConnectionCheckShort>Unsupported connection type</StiUnsupportedConnectionCheckShort>
</CheckConnection>
<CheckDataRelation>
<StiDifferentAmountOfKeysInDataRelationCheckLong>The number of parent keys of the '{0}' relation does not correspond to the number of child keys. The following relation cannot be created when rendering a report!</StiDifferentAmountOfKeysInDataRelationCheckLong>
<StiDifferentAmountOfKeysInDataRelationCheckShort>Incorrect number of keys</StiDifferentAmountOfKeysInDataRelationCheckShort>
<StiKeysInAbsentDataRelationCheckLong>Keys of the '{0}' relation are not specified. Such a relation will not be created when report rendering!</StiKeysInAbsentDataRelationCheckLong>
<StiKeysInAbsentDataRelationCheckShort>No keys</StiKeysInAbsentDataRelationCheckShort>
<StiKeysNotFoundRelationCheckLong>The following columns: '{1}' which were specified as keys of the '{0}', were not found in the Parent or Child data sources of the relation. This relation cannot be created when report rendering!</StiKeysNotFoundRelationCheckLong>
<StiKeysNotFoundRelationCheckShort>The key of the relation not found</StiKeysNotFoundRelationCheckShort>
<StiKeysTypesMismatchDataRelationCheckLong>'{1}' column types which were specified as keys for the '{0}' relation does not correspond! Such a relation cannot be created when report rendering!</StiKeysTypesMismatchDataRelationCheckLong>
<StiKeysTypesMismatchDataRelationCheckShort>The key types of the relation does not correspond</StiKeysTypesMismatchDataRelationCheckShort>
<StiNoNameDataRelationCheckLong>The Name of the relation (created between data sources '{0}') is not specified. This name is used for creating the class in the report code of this relation. Without the name the reporting tool will not be able to create the report code of the report and the report will not be compiled!</StiNoNameDataRelationCheckLong>
<StiNoNameDataRelationCheckShort>There is no name for the relation</StiNoNameDataRelationCheckShort>
<StiNoNameInSourceDataRelationCheckLong>NameInSource field is not filled for the '{0}' relation. Without this field the reporting tool will not be able to find the relation in the database and the report will not be rendered!</StiNoNameInSourceDataRelationCheckLong>
<StiNoNameInSourceDataRelationCheckShort>NameInSource field is not filled for the relation</StiNoNameInSourceDataRelationCheckShort>
<StiSourcesInAbsentDataRelationCheckLong>The parent data source and/or the child data source is not specified for the '{0}' relation. It is necessary to specify both data sources!</StiSourcesInAbsentDataRelationCheckLong>
<StiSourcesInAbsentDataRelationCheckShort>There are no Data Sources</StiSourcesInAbsentDataRelationCheckShort>
</CheckDataRelation>
<CheckDataSource>
<StiCalculatedColumnRecursionCheckLong>The '{0}' calculated column of the '{1}' datasource has a expression with recursion. It's impossible to refer to the Calculated Column in its own expression.</StiCalculatedColumnRecursionCheckLong>
<StiCalculatedColumnRecursionCheckShort>Recursive Expression</StiCalculatedColumnRecursionCheckShort>
<StiNoNameDataSourceCheckLong>The datasource name is not specified. This name is used for creating a class in the report code of the data source. Without indicating the name, the reporting tool cannot create the report code and the report will not be compiled!</StiNoNameDataSourceCheckLong>
<StiNoNameDataSourceCheckShort>There is no name for the Data Source</StiNoNameDataSourceCheckShort>
<StiNoNameInSourceDataSourceCheckLong>NameInSource field is not filled for the '{0}' data sources. Without filling this field, the reporting tool will not be able to find the data for the data source in the database and the report will not be rendered!</StiNoNameInSourceDataSourceCheckLong>
<StiNoNameInSourceDataSourceCheckShort>NameInSource of the data source field is not filled</StiNoNameInSourceDataSourceCheckShort>
<StiUndefinedDataSourceCheckLong>The undefined '{0}' data source is found in the report. The reporting tool cannot correctly process such type of the data source! Maybe custom data sources are used in the report. This report cannot be rendered!</StiUndefinedDataSourceCheckLong>
<StiUndefinedDataSourceCheckShort>Undefined Data Source</StiUndefinedDataSourceCheckShort>
</CheckDataSource>
<CheckGlobal>
<Error>Error! </Error>
<Information>Information. </Information>
<RenderingMessage>Report Rendering Message. </RenderingMessage>
<Warning>Warning! </Warning>
</CheckGlobal>
<CheckLicense>
<StiLicenseTrialCheckLong>You are using the trial version of Stimulsoft Reports and Dashboards. To use the software in production you should purchase a license.</StiLicenseTrialCheckLong>
<StiValidSubscriptioRequiredCheckLong>Valid Subscription Required. Please update your subscription to use the fully functional version of Stimulsoft Designer.</StiValidSubscriptioRequiredCheckLong>
</CheckLicense>
<CheckPage>
<StiLostPointsOnPageCheckLong>Lost points are found on the '{0}' page: {1}. Points are invisible and used in the following primitives: vertical line, rectangle and rounded rectangle. If the point does not match to any components then it can be deleted.</StiLostPointsOnPageCheckLong>
<StiLostPointsOnPageCheckShort>Lost points</StiLostPointsOnPageCheckShort>
<StiOrientationPageCheckLongLandscape>The '{0}' page orientation does not correspond to the specified page size. Usually, for Landscape orientation, the page width should be greater than the page height. The width of this page is lesser than the height. This may cause to problems when printing this page.</StiOrientationPageCheckLongLandscape>
<StiOrientationPageCheckLongPortrait>The '{0}' page orientation does not correspond to the specified page size. Usually, for Portrait orientation, the page width should be less than the page height. The width of this page is greater than the height. This may cause to problems when printing this page.</StiOrientationPageCheckLongPortrait>
<StiOrientationPageCheckShort>Incorrect '{0}' page orientation.</StiOrientationPageCheckShort>
</CheckPage>
<CheckReport>
<StiCategoryRequestFromUserCheckLong>The '{0}' variable's categories can't be shown on the parameters panel of the viewer because it is possible only when the value of the 'ParametersOrientation' report property is set to 'Vertical'.</StiCategoryRequestFromUserCheckLong>
<StiCategoryRequestFromUserCheckShort>Showing categories on the parameters panel</StiCategoryRequestFromUserCheckShort>
<StiCloudCompilationModeCheckLong>Stimulsoft Cloud cannot preview this report in the compilation mode. Change the report to the interpretation mode.</StiCloudCompilationModeCheckLong>
<StiCloudCompilationModeCheckShort>This report is in the compilation mode</StiCloudCompilationModeCheckShort>
<StiCompilationErrorAssemblyCheckLong>Could not load file or assembly '{0}' or one of its dependencies.</StiCompilationErrorAssemblyCheckLong>
<StiCompilationErrorCheck2Long>The error of compilation is found in the '{1}' property of the '{2}' component:</StiCompilationErrorCheck2Long>
<StiCompilationErrorCheck3Long>The error of compilation is found in the '{1}' event of the '{2}' component:</StiCompilationErrorCheck3Long>
<StiCompilationErrorCheckLong>The error of compilation is found in the '{0}' report:</StiCompilationErrorCheckLong>
<StiCompilationErrorCheckShort>The error of compilation</StiCompilationErrorCheckShort>
<StiCompilationWarningCheckLong>A compilation warning is found in the '{0}' report:</StiCompilationWarningCheckLong>
<StiCompilationWarningCheckShort>A compilation warning</StiCompilationWarningCheckShort>
<StiDataSourceLoopingCheckLong>Data band '{0}' and child data band '{1}' use the same data source '{2}'. To avoid looping, the child data band will not be shown.</StiDataSourceLoopingCheckLong>
<StiDataSourceLoopingCheckShort>Data looping is possible</StiDataSourceLoopingCheckShort>
<StiDuplicatedName2CheckLong>There are several data sources with the '{0}' name.</StiDuplicatedName2CheckLong>
<StiDuplicatedName3CheckLong>There are several data sources with the name '{0}' which differ in case.</StiDuplicatedName3CheckLong>
<StiDuplicatedNameCheckLong>There are several components with the '{0}' name.</StiDuplicatedNameCheckLong>
<StiDuplicatedNameCheckShort>The components with duplicate names are found</StiDuplicatedNameCheckShort>
<StiDuplicatedNameInSourceCheckShort>Duplicates in the data source</StiDuplicatedNameInSourceCheckShort>
<StiDuplicatedNameInSourceInDataRelationReportCheckLong>The '{0}' relations are found in the report. They have equal ('{1}') values in the NameInSource. All values in the NameInSource should be unique in the range of one relation to one database! It is necessary to correct these fields of relations.</StiDuplicatedNameInSourceInDataRelationReportCheckLong>
<StiDuplicatedNameInSourceInDataRelationReportCheckShort>Duplicates in relations</StiDuplicatedNameInSourceInDataRelationReportCheckShort>
<StiDuplicatedReportName2CheckLong>The report name '{0}' is the same as the data source name.</StiDuplicatedReportName2CheckLong>
<StiDuplicatedReportNameCheckLong>The report name '{0}' is the same as the component name.</StiDuplicatedReportNameCheckLong>
<StiNetCoreCompilationModeCheckLong>Stimulsoft .NET Core engine cannot render this report in the compilation mode. Change the report to the interpretation mode.</StiNetCoreCompilationModeCheckLong>
<StiNetCoreCompilationModeCheckShort>This report is in the compilation mode</StiNetCoreCompilationModeCheckShort>
</CheckReport>
<CheckVariable>
<StiVariableInitializationCheckLong>The '{0}' variable has the wrong default value. It is impossible to initialize the variable with a specified value.</StiVariableInitializationCheckLong>
<StiVariableInitializationCheckShort>Initialization value</StiVariableInitializationCheckShort>
<StiVariableNameCheckLong>The variable name "{0}" cannot be used because it is reserved.</StiVariableNameCheckLong>
<StiVariableNameCheckShort>The variable name is invalid.</StiVariableNameCheckShort>
<StiVariableRecursionCheckLong>The '{0}' variable has a expression with recursion. It's impossible to refer to the Variable in its own expression.</StiVariableRecursionCheckLong>
<StiVariableRecursionCheckShort>Recursive Expression</StiVariableRecursionCheckShort>
<StiVariableTypeCheckLong>For the dependent variables to work correctly, their types and the types of their columns must match.</StiVariableTypeCheckLong>
<StiVariableTypeCheckShort>Variable types do not match.</StiVariableTypeCheckShort>
</CheckVariable>
<Font>
<Bold>A value that indicates whether this Font is bold.</Bold>
<Italic>A value that indicates whether this Font is italic.</Italic>
<Name>The face name of this Font.</Name>
<Size>Size of this Font.</Size>
<Strikeout>A value that indicates whether this Font specifies a horizontal line through the font.</Strikeout>
<Underline>A value that indicates whether this Font is underlined.</Underline>
</Font>
<Parser>
<DivisionByZero>Division by zero.</DivisionByZero>
<ExpressionIsEmpty>The expression is empty.</ExpressionIsEmpty>
<FieldMethodOrPropertyNotFound>Field, method, or property is not found: '{0}'.</FieldMethodOrPropertyNotFound>
<FunctionHasInvalidArgument>The '{0}' function has an invalid argument '{1}': cannot convert from '{2}' to '{3}'.</FunctionHasInvalidArgument>
<FunctionNotFound>The function is not found: '{0}'.</FunctionNotFound>
<FunctionNotYetImplemented>The '{0}' function is not yet implemented.</FunctionNotYetImplemented>
<IntegralConstantIsTooLarge>The integral constant is too large.</IntegralConstantIsTooLarge>
<ItemDoesNotContainDefinition>The '{0}' does not contain a definition for the '{1}'.</ItemDoesNotContainDefinition>
<LeftParenthesisExpected>( expected.</LeftParenthesisExpected>
<MethodHasInvalidArgument>The '{0}' method has an invalid argument '{1}'. Cannot convert from '{2}' to '{3}'.</MethodHasInvalidArgument>
<NameDoesNotExistInCurrentContext>The name '{0}' does not exist in the current context.</NameDoesNotExistInCurrentContext>
<NoMatchingOverloadedMethod>There is no matching overloaded method for '{0}({1})'.</NoMatchingOverloadedMethod>
<NoOverloadForMethodTakesNArguments>No overload for the method '{0}' takes '{1}' arguments.</NoOverloadForMethodTakesNArguments>
<OperatorCannotBeAppliedToOperands>The operator '{0}' cannot be applied to operands of the type '{1}' and the type '{2}.</OperatorCannotBeAppliedToOperands>
<RightParenthesisExpected>) expected.</RightParenthesisExpected>
<SyntaxError>Syntax error.</SyntaxError>
<TheTypeOrNamespaceNotExistInTheNamespace>The type or namespace name '{0}' does not exist in the namespace '{1}'.</TheTypeOrNamespaceNotExistInTheNamespace>
<UnexpectedEndOfExpression>Unexpected end of expression.</UnexpectedEndOfExpression>
<UnknownInternalError>Unknown internal error.</UnknownInternalError>
<UnprocessedLexemesRemain>Syntax error - unprocessed lexemes remain.</UnprocessedLexemesRemain>
</Parser>
<Publish>
<ActionDesign>Design</ActionDesign>
<ActionExport>Export</ActionExport>
<ActionShow>Show</ActionShow>
<AddNewConnection>Add New Connection</AddNewConnection>
<Cancel>Cancel</Cancel>
<ChangeExportSettings>Change export settings</ChangeExportSettings>
<ChangeExportSettingsToolTip>The code for creating the settings class of the selected export format will be added. In the project, you can change the export settings.</ChangeExportSettingsToolTip>
<Close>Close</Close>
<ConnectionsFromReport>Use Connection from Report</ConnectionsFromReport>
<ConnectionsFromReportToolTip>Connections saved in the report template will be used without any modifications.</ConnectionsFromReportToolTip>
<ConnectionsRegData>Register Data from Code</ConnectionsRegData>
<ConnectionsRegDataToolTip>You will be offered to connect data from code in the form of XML or JSON data, or, if possible, in the form of business objects.</ConnectionsRegDataToolTip>
<ConnectionsReplace>Replace Connection String</ConnectionsReplace>
<ConnectionsReplaceToolTip>You will be offered to change the connection from the code, depending on its type - file path, database connection string.</ConnectionsReplaceToolTip>
<Copy>Copy</Copy>
<CopyingLibraries>Copying project files...</CopyingLibraries>
<DataAdapterPlatform>Data Adapter Platform</DataAdapterPlatform>
<DeployFormPlatform>Deploy Form to Platform:</DeployFormPlatform>
<DeployReportPlatform>Deploy Report to Platform:</DeployReportPlatform>
<DownloadingLibraries>Downloading libraries...</DownloadingLibraries>
<EmbedAllDataToResources>The report contains data connections that are not supported in the selected platform. Do you want to embed available data in the report as resources? In this case, all connections will be replaced with XML resources.</EmbedAllDataToResources>
<EmbedAllDataToResourcesToolTip>All data will be loaded and added to the report template as resources. This allows you to view the report without having to query the database.</EmbedAllDataToResourcesToolTip>
<ExportFormat>Export Report to:</ExportFormat>
<ExportFormatData>Data</ExportFormatData>
<ExportFormatDataType>Data Type:</ExportFormatDataType>
<ExportFormatImage>Image</ExportFormatImage>
<ExportFormatImageType>Image Type:</ExportFormatImageType>
<FormAction>What to do with Form:</FormAction>
<FrameworkType>Framework Type</FrameworkType>
<FrameworkVersion>Framework Version</FrameworkVersion>
<FullScreenViewer>Display the Viewer in Full Browser Window</FullScreenViewer>
<FullScreenViewerToolTip>The viewer with the report will be displayed in the entire available space of the browser window.</FullScreenViewerToolTip>
<GetLibrariesFrom>Get Stimulsoft Libraries from {0}</GetLibrariesFrom>
<GetLibrariesFromToolTip>All necessary libraries and scripts will be connected from the repository. Otherwise, they will be copied into the project and connected directly.</GetLibrariesFromToolTip>
<GroupAddons>Addons</GroupAddons>
<GroupConnections>Data Connections</GroupConnections>
<GroupParameters>Report Parameters</GroupParameters>
<HideOptions>Hide Options</HideOptions>
<IncludeFonts>Include Fonts</IncludeFonts>
<IncludeFontsToolTip>The fonts necessary for correct calculation of the sizes of report components will be copied and connected to the project.</IncludeFontsToolTip>
<IncludeFormPackedStringToCode>Include Form as Packed String to Code</IncludeFormPackedStringToCode>
<IncludeFormPackedStringToCodeToolTip>The form will be saved as a Base64 string right in the project code. This allows you to get rid of additional files.</IncludeFormPackedStringToCodeToolTip>
<IncludeLibrariesToStandalone>Include Stimulsoft Libraries to the Executable File</IncludeLibrariesToStandalone>
<IncludeLibrariesToStandaloneToolTip>All necessary libraries and files will be included in the executable file. Otherwise, a ZIP archive will be created.</IncludeLibrariesToStandaloneToolTip>
<IncludeLicenseKey>Include License Key</IncludeLicenseKey>
<IncludeLicenseKeyToolTip>The license key from the account of the currently authorized user will be integrated into the project.</IncludeLicenseKeyToolTip>
<IncludeLocalization>Include Localization</IncludeLocalization>
<IncludeLocalizationToolTip>The selected localization will be copied and connected to the project.</IncludeLocalizationToolTip>
<IncludeReportPackedStringToCode>Include Report as Packed String to Code</IncludeReportPackedStringToCode>
<IncludeReportPackedStringToCodeToolTip>The report will be saved as a Base64 string right in the project code. This allows you to get rid of additional files.</IncludeReportPackedStringToCodeToolTip>
<IncludeUITheme>Include UI Theme</IncludeUITheme>
<IncludeUIThemeToolTip>The selected user interface theme will be set in the component settings.</IncludeUIThemeToolTip>
<JavaScriptFramework>Framework Type:</JavaScriptFramework>
<LicenseKeyTypeFile>File</LicenseKeyTypeFile>
<LicenseKeyTypeString>String</LicenseKeyTypeString>
<LoadForm>Load Form from:</LoadForm>
<LoadReport>Load Report from:</LoadReport>
<LoadReportAssembly>Assembly</LoadReportAssembly>
<LoadReportByteArray>Byte Array</LoadReportByteArray>
<LoadReportClass>Class</LoadReportClass>
<LoadReportFile>File</LoadReportFile>
<LoadReportHyperlink>Hyperlink</LoadReportHyperlink>
<LoadReportOnServerSide>Load the Report on the Server Side</LoadReportOnServerSide>
<LoadReportOnServerSideToolTip>The report file will be loaded on the server side and transferred to the component as a Base64 string. This avoids unnecessary requests to the server.</LoadReportOnServerSideToolTip>
<LoadReportResource>Resource</LoadReportResource>
<LoadReportStream>Stream</LoadReportStream>
<LoadReportString>String</LoadReportString>
<ParametersFromReport>Use Value from Report</ParametersFromReport>
<ParametersFromReportToolTip>The values of the parameters set in the report template will be used.</ParametersFromReportToolTip>
<ParametersReplace>Replace Value from {0}Code</ParametersReplace>
<ParametersReplacePhpInfo>The parameter will be removed from the report dictionary and can be used only in the SQL query.</ParametersReplacePhpInfo>
<ParametersReplaceToolTip>You will be offered to change the values of the report parameters from the code.</ParametersReplaceToolTip>
<ParametersRequestFromUser>Request from User</ParametersRequestFromUser>
<ParametersRequestFromUserToolTip>The report parameter will be requested from the user when viewing the report in the viewer window.</ParametersRequestFromUserToolTip>
<ProjectType>Project Type:</ProjectType>
<Publish>Publish</Publish>
<PublishType>Report Publish Type:</PublishType>
<PublishTypeForm>Form Publish Type:</PublishTypeForm>
<PublishTypeProject>Project</PublishTypeProject>
<PublishTypeProjectToolTip>A ZIP archive will be created with the finished project and all the necessary files for further compilation and launch.</PublishTypeProjectToolTip>
<PublishTypeStandalone>Standalone</PublishTypeStandalone>
<PublishTypeStandaloneToolTip>An already compiled application for viewing the report will be created.</PublishTypeStandaloneToolTip>
<ReadMore>Read More</ReadMore>
<RegDataOnlyForPreview>Use Only for Report Preview</RegDataOnlyForPreview>
<RegDataOnlyForPreviewToolTip>The data will be connected to the report only at the moment of the preview.</RegDataOnlyForPreviewToolTip>
<RegDataSynchronize>Synchronize Report Dictionary</RegDataSynchronize>
<RegDataSynchronizeToolTip>After connecting the data to the report, the data dictionary will be synchronized - data sources, columns and their types, data links.</RegDataSynchronizeToolTip>
<ReplaceConnectionString>Replace Connection String</ReplaceConnectionString>
<ReplacePathToData>Replace Path to the Data</ReplacePathToData>
<ReportAction>What to do with Report:</ReportAction>
<ReportErrors>Unfortunately, due to errors, this report cannot be published!</ReportErrors>
<SaveExportedPagesToArchive>Save all pages in one ZIP archive</SaveExportedPagesToArchive>
<SaveExportedPagesToArchiveToolTip>Each report page will be exported to the selected image format, all pages will be added into one ZIP archive.</SaveExportedPagesToArchiveToolTip>
<SaveExportedReportToFile>Save the exported report to a file</SaveExportedReportToFile>
<SaveExportedReportToFileToolTip>Saving the exported report on the server side to the specified file. The export function will return a boolean result.</SaveExportedReportToFileToolTip>
<SaveProjectPackage>Save Project Package</SaveProjectPackage>
<SaveStandalone>Save Standalone</SaveStandalone>
<SaveStandalonePackage>Save Standalone Package</SaveStandalonePackage>
<SearchLibraries>Search for libraries...</SearchLibraries>
<ServerSideReportProcessing>Server-Side Report Processing</ServerSideReportProcessing>
<ServerSideReportProcessingToolTip>Loading, building and exporting the report will be done on the server-side using the Node.js platform.</ServerSideReportProcessingToolTip>
<ShowMore>Show More</ShowMore>
<ShowOptions>Show Options</ShowOptions>
<ThemeBackground>Background:</ThemeBackground>
<ThemeStyle>Theme Style:</ThemeStyle>
<TrialVersion>Trial Version</TrialVersion>
<TrialVersionHasExpired>Trial Version. Your subscription has expired and requires renewal.</TrialVersionHasExpired>
<TrialVersionNotIncluded>Trial Version. This product is not included in your subscription.</TrialVersionNotIncluded>
<Use>Use</Use>
<UseCompilationCache>Use Compilation Cache</UseCompilationCache>
<UseCompilationCacheToolTip>The rendered report will be saved in a temporary directory, which allows you to speed up its rendering and reduce memory usage.</UseCompilationCacheToolTip>
<UseCompressedScripts>Use Compressed Scripts</UseCompressedScripts>
<UseCompressedScriptsToolTip>Packed scripts will be used instead of regular ones. This allows you to reduce their size, but it takes some time to unpack when running.</UseCompressedScriptsToolTip>
<UseHtmlTemplate>Use an HTML template</UseHtmlTemplate>
<UseHtmlTemplateToolTip>Use an HTML template to display the component. This allows you to place other elements on the page, and use JavaScript events.</UseHtmlTemplateToolTip>
<UseLatestVersion>Use the latest version of libraries</UseLatestVersion>
<UseLatestVersionToolTip>When connecting libraries and scripts, the latest available official version of the product will be used instead of the currently installed version.</UseLatestVersionToolTip>
<UseRenderedReport>Use Rendered Report</UseRenderedReport>
<UseRenderedReportToolTip>The report will be built and saved in document format. You will no longer need a data connection to view the report, but any interactivity and report parameters will not be available.</UseRenderedReportToolTip>
<UseWpfDesignerV2>Use the Designer V2</UseWpfDesignerV2>
<UseWpfDesignerV2ToolTip>The updated WPF report designer will be used. It has a new UI, increased speed, and other optimizations.</UseWpfDesignerV2ToolTip>
</Publish>
<ReportComparer>
<Change>Change</Change>
<Copy>Copy</Copy>
<CopyAll>Copy All</CopyAll>
<Delete>Delete</Delete>
<SaveChangesInReports>Do you want to save changes in reports?</SaveChangesInReports>
<StiBusinessObjectDifferentColumnCompareComment>Shows what columns of identical Business Objects are only in one report.</StiBusinessObjectDifferentColumnCompareComment>
<StiBusinessObjectDifferentColumnCompareLong>The column '{0}' of the Business Object '{1}' of the report '{2}' not present in the Business Object '{3}' of the report '{4}'.</StiBusinessObjectDifferentColumnCompareLong>
<StiBusinessObjectDifferentColumnCompareShort>No column in the business object.</StiBusinessObjectDifferentColumnCompareShort>
<StiBusinessObjectPropertiesCompareComment>Shows different properties values of identical Business Objects.</StiBusinessObjectPropertiesCompareComment>
<StiBusinessObjectPropertiesCompareLong>In the report '{0}' the '{2}' property of the Business Object '{1}' differs from the values of the '{5}' property of the Business Object '{4}' of the report '{3}'.</StiBusinessObjectPropertiesCompareLong>
<StiBusinessObjectPropertiesCompareShort>Different properties values of Business Objects.</StiBusinessObjectPropertiesCompareShort>
<StiChangeInReportPropertyActionDescription>Equate both properties values to '{0}'</StiChangeInReportPropertyActionDescription>
<StiComponentPropertiesCompareComment>Shows different properties values of identical components.</StiComponentPropertiesCompareComment>
<StiComponentPropertiesCompareLong>The '{2}' property of the component '{1}' in the report '{0}' differs from the value of the '{5}' property of the component '{4}' in the report '{3}'.</StiComponentPropertiesCompareLong>
<StiComponentPropertiesCompareShort>Different values of component properties.</StiComponentPropertiesCompareShort>
<StiCopyAllActionDescription>Copy everything to the report '{0}'</StiCopyAllActionDescription>
<StiCopyBusinessDataColumnActionsDescription>Copy the column to the Business Object</StiCopyBusinessDataColumnActionsDescription>
<StiCopyBusinessObjectActionDescription>Copy Business Object</StiCopyBusinessObjectActionDescription>
<StiCopyComponentActionDescription>Copy the component</StiCopyComponentActionDescription>
<StiCopyDataColumnActionDescription>Copy the column to the data source</StiCopyDataColumnActionDescription>
<StiCopyDataRelationActionDescription>Copy Data Relation</StiCopyDataRelationActionDescription>
<StiCopyDataSourceActionDescription>Copy data source</StiCopyDataSourceActionDescription>
<StiCopyStyleActionDescription>Copy Style</StiCopyStyleActionDescription>
<StiCopyVariableActionDescription>Copy variable</StiCopyVariableActionDescription>
<StiDataRelationPropertiesCompareComment>Shows different properties values of identical relations.</StiDataRelationPropertiesCompareComment>
<StiDataRelationPropertiesCompareLong>The '{2}' property of the relation '{1}' of the report '{0}' differs from the value of the '{5}' property of the relation '{4}' of the report '{3}'.</StiDataRelationPropertiesCompareLong>
<StiDataRelationPropertiesCompareShort>Different properties values of relations.</StiDataRelationPropertiesCompareShort>
<StiDataSourceDifferentColumnCompareComment>Shows what columns of identical data sources are only in one report.</StiDataSourceDifferentColumnCompareComment>
<StiDataSourceDifferentColumnCompareLong>The column '{0}' from the data source '{1}' of the report '{2}' not present in the data source '{3}' of the report '{4}'.</StiDataSourceDifferentColumnCompareLong>
<StiDataSourceDifferentColumnCompareShort>No column in the data source.</StiDataSourceDifferentColumnCompareShort>
<StiDataSourcePropertiesCompareComment>Shows different properties values of identical data sources.</StiDataSourcePropertiesCompareComment>
<StiDataSourcePropertiesCompareLong>The '{2}' property of the data source '{1}' of the report '{0}' differs from the value of the '{5}' property of the data source '{4}' of the report '{3}'.</StiDataSourcePropertiesCompareLong>
<StiDataSourcePropertiesCompareShort>Different values of the data sources properties.</StiDataSourcePropertiesCompareShort>
<StiDeleteBusinessDataColumnActionsDescription>Delete the column from Business Objects</StiDeleteBusinessDataColumnActionsDescription>
<StiDeleteBusinessObjectActionDescription>Delete Business Object</StiDeleteBusinessObjectActionDescription>
<StiDeleteComponentActionDescription>Delete the component from the report</StiDeleteComponentActionDescription>
<StiDeleteDataColumnActionDescription>Delete the column from the data source</StiDeleteDataColumnActionDescription>
<StiDeleteDataRelationActionDescription>Delete the relation between data sources</StiDeleteDataRelationActionDescription>
<StiDeleteDataSourceActionDescription>Delete data source</StiDeleteDataSourceActionDescription>
<StiDeleteStyleActionDescription>Delete Style</StiDeleteStyleActionDescription>
<StiDeleteVariableActionDescription>Delete the variable from the Report </StiDeleteVariableActionDescription>
<StiReportDifferentBusinessObjectCompareComment>Shows what Business Object present in one report only.</StiReportDifferentBusinessObjectCompareComment>
<StiReportDifferentBusinessObjectCompareLong>The Business Object '{0}' not present in the report '{1}'.</StiReportDifferentBusinessObjectCompareLong>
<StiReportDifferentBusinessObjectCompareShort>No Business Object.</StiReportDifferentBusinessObjectCompareShort>
<StiReportDifferentComponentsCompareComment>Shows what component present in one report only.</StiReportDifferentComponentsCompareComment>
<StiReportDifferentComponentsCompareLong>The component '{0}' not present in the report '{1}'.</StiReportDifferentComponentsCompareLong>
<StiReportDifferentComponentsCompareMessag1>There is no component '{1}' for the Container property of the StiClone '{0}'.</StiReportDifferentComponentsCompareMessag1>
<StiReportDifferentComponentsCompareMessag2>There is no component '{1}' for the Master Component property of the StiDataBand '{0}'.</StiReportDifferentComponentsCompareMessag2>
<StiReportDifferentComponentsCompareShort>No component.</StiReportDifferentComponentsCompareShort>
<StiReportDifferentDataRelationCompareComment>Shows what relation between the data sources is only in one report.</StiReportDifferentDataRelationCompareComment>
<StiReportDifferentDataRelationCompareLong>The relation '{0}' between '{1}' and '{2}' is not present in the report '{3}'.</StiReportDifferentDataRelationCompareLong>
<StiReportDifferentDataRelationCompareShort>No relation.</StiReportDifferentDataRelationCompareShort>
<StiReportDifferentDataSourceCompareComment>Shows what data source present in one report only.</StiReportDifferentDataSourceCompareComment>
<StiReportDifferentDataSourceCompareLong>The data source '{0}' not present in the report '{1}'.</StiReportDifferentDataSourceCompareLong>
<StiReportDifferentDataSourceCompareShort>No data source.</StiReportDifferentDataSourceCompareShort>
<StiReportDifferentStyleCompareComment>Shows what style present in one report only.</StiReportDifferentStyleCompareComment>
<StiReportDifferentStyleCompareLong>The style '{0}' is not present in the report '{1}'.</StiReportDifferentStyleCompareLong>
<StiReportDifferentStyleCompareShort>No style.</StiReportDifferentStyleCompareShort>
<StiReportDifferentVariableCompareComment>Shows what variable present in one report only.</StiReportDifferentVariableCompareComment>
<StiReportDifferentVariableCompareLong>The variable '{0}' not present in the report '{1}'.</StiReportDifferentVariableCompareLong>
<StiReportDifferentVariableCompareShort>No variable.</StiReportDifferentVariableCompareShort>
<StiReportPropertiesCompareComment>Shows various values of report properties.</StiReportPropertiesCompareComment>
<StiReportPropertiesCompareLong>In the report '{0}' the '{1}' property does not correspond to the value of the '{3}' property of the report '{2}'.</StiReportPropertiesCompareLong>
<StiReportPropertiesCompareShort>Different values of report properties.</StiReportPropertiesCompareShort>
<StiStylePropertiesCompareComment>Shows different properties values with identical styles.</StiStylePropertiesCompareComment>
<StiStylePropertiesCompareLong>The '{2}' property of the style '{1}' of the report '{0}' differs from the value of the '{5}' property of the style '{4}' of the report '{3 }'.</StiStylePropertiesCompareLong>
<StiStylePropertiesCompareShort>Different values of properties in the styles.</StiStylePropertiesCompareShort>
<StiVariablePropertiesCompareComment>Shows different values of the properties of identical variables.</StiVariablePropertiesCompareComment>
<StiVariablePropertiesCompareLong>The '{2}' property of the variable '{1}' of the report '{0}' differs from the value of the '{5}' property of the variable '{4}' of the report '{3}'.</StiVariablePropertiesCompareLong>
<StiVariablePropertiesCompareShort>Different properties values of variables.</StiVariablePropertiesCompareShort>
</ReportComparer>
<ReportComparerViewer>
<Browse>Browse...</Browse>
<BusinessObjects>Business Objects</BusinessObjects>
<BusinessObjectsDataColumns>Business Objects Data Columns</BusinessObjectsDataColumns>
<Cancel>Cancel</Cancel>
<Compare>Compare</Compare>
<CompareList>Compare List</CompareList>
<CompareReports>Compare Reports</CompareReports>
<Compares>Compares</Compares>
<Components>Components</Components>
<DataRelations>Data Relations</DataRelations>
<DataSources>Data Sources</DataSources>
<DataSourcesDataColumns>Data Sources Data Columns</DataSourcesDataColumns>
<EnterPassword>Enter the password for opening of it a file</EnterPassword>
<FirstReport>First Report</FirstReport>
<LongMessage>Long Message</LongMessage>
<Next>Next</Next>
<OK>OK</OK>
<OpenReports>Open Reports</OpenReports>
<Previous>Previous</Previous>
<Report>Report</Report>
<ReportToCompare>Report to Compare</ReportToCompare>
<SaveReports>Save Reports</SaveReports>
<SecondReport>Second Report</SecondReport>
<SelectReports>Select Reports</SelectReports>
<StatusHigh>High</StatusHigh>
<StatusLow>Low</StatusLow>
<StatusMiddle>Middle</StatusMiddle>
<Styles>Styles</Styles>
<Variables>Variables</Variables>
<WarningFile1EqualFile2>Warning! File 'First Report' equal 'Second Report'.</WarningFile1EqualFile2>
<WarningFirstAndSecondReportNotFound>Warning! Files 'First Report' and 'Second Report' not found.</WarningFirstAndSecondReportNotFound>
<WarningFirstReportNotFound>Warning! File 'First Report' not found.</WarningFirstReportNotFound>
<WarningSecondReportNotFound>Warning! File 'Second Report' not found.</WarningSecondReportNotFound>
</ReportComparerViewer>
<StiAdvancedBorder>
<BottomSide>A frame of the bottom side.</BottomSide>
<LeftSide>A frame of the left side.</LeftSide>
<RightSide>A frame of the right side.</RightSide>
<TopSide>A frame of the top side.</TopSide>
</StiAdvancedBorder>
<StiArea>
<BorderColor>A border color of this area.</BorderColor>
<Brush>A brush to fill a area.</Brush>
<ColorEach>A value indicates that each series is drawn by its own colour.</ColorEach>
<GridLinesHor>Horizontal grid lines on left axis.</GridLinesHor>
<GridLinesHorRight>Horizontal grid lines on right axis.</GridLinesHorRight>
<GridLinesVert>Grid lines on vertical axis.</GridLinesVert>
<InterlacingHor>Interlacing settings on horizontal axis.</InterlacingHor>
<InterlacingVert>Interlacing settings on vertical axis.</InterlacingVert>
<RadarStyle>A style of radar area.</RadarStyle>
<ReverseHor>A value that indicate that all values on horizontal axis is reverse.</ReverseHor>
<ReverseVert>A value that indicate that all values on vertical axis is reverse.</ReverseVert>
<ShowShadow>A value that indicates necessary draw shadow or no.</ShowShadow>
<XAxis>Settings of XAxis.</XAxis>
<XTopAxis>Settings of XTopAxis.</XTopAxis>
<YAxis>Settings of YAxis.</YAxis>
<YRightAxis>Settings of YRightAxis.</YRightAxis>
</StiArea>
<StiAreaSeries>
<Brush>A brush that will be used to fill area.</Brush>
</StiAreaSeries>
<StiArrowShapeType>
<ArrowHeight>The arrow height factor.</ArrowHeight>
<ArrowWidth>The arrow width factor.</ArrowWidth>
</StiArrowShapeType>
<StiAustraliaPost4StateBarCodeType>
<Height>Gets or sets height factor of the bar code.</Height>
<Module>Gets or sets width of the most fine element of the bar code.</Module>
</StiAustraliaPost4StateBarCodeType>
<StiAxis>
<ArrowStyle>Style of axis arrow.</ArrowStyle>
<Interaction>Interaction options of this component.</Interaction>
<Labels>Axis labels settings.</Labels>
<LineColor>Line color which used to draw axis.</LineColor>
<LineStyle>Line style of axis.</LineStyle>
<LineWidth>Line width which used to draw axis.</LineWidth>
<LogarithmicScale>A value indicates that logarithmic scale will be used.</LogarithmicScale>
<Range>Axis range settings.</Range>
<RangeScrollEnabled>A value which indicates whether the range of axis can be scrolled.</RangeScrollEnabled>
<ShowEdgeValues>A value indicates that first and last arguments on axis will be shown anyway.</ShowEdgeValues>
<ShowScrollBar>A value which indicates that scroll bar will be shown.</ShowScrollBar>
<ShowXAxis>Type of drawing X axis.</ShowXAxis>
<ShowYAxis>Type of drawing Y axis.</ShowYAxis>
<StartFromZero>A value indicates that all arguments will be shows from zero.</StartFromZero>
<Step>A value that indicates with what steps do labels be shown on axis.</Step>
<Ticks>Ticks settings.</Ticks>
<Title>Axis title settings.</Title>
<Visible>Visibility of axis.</Visible>
</StiAxis>
<StiAxisDateTimeStep>
<Interpolation>The value indicates that the values will be interpolated.</Interpolation>
<NumberOfValues>The value indicates how many values to display in a time step.</NumberOfValues>
<Step>The value indicates with what the time step values will be shown.</Step>
</StiAxisDateTimeStep>
<StiAxisInteraction>
<RangeScrollEnabled>A value which indicates whether the range of axis can be scrolled.</RangeScrollEnabled>
</StiAxisInteraction>
<StiAxisLabels>
<Angle>An angle of label rotation.</Angle>
<Antialiasing>A value that control antialiasing drawing mode.</Antialiasing>
<Color>A color of labels drawing.</Color>
<Font>A font which will be used for axis label drawing.</Font>
<Format>Format string which is used for formating argument values.</Format>
<Placement>A mode of labels placement on axis.</Placement>
<Step>A value which indicates with what steps do labels be shown on axis.</Step>
<TextAfter>A string which will be output after argument string representation.</TextAfter>
<TextAlignment>A label text alignment.</TextAlignment>
<TextBefore>A string which will be output before argument string representation.</TextBefore>
<Width>Fixed width of axis labels.</Width>
<WordWrap>Word wrap.</WordWrap>
</StiAxisLabels>
<StiAxisRange>
<Auto>A value indicates that minimum and maximum values will be calculated automatically.</Auto>
<Maximum>Maximum value of axis range.</Maximum>
<Minimum>Minimum value of axis range.</Minimum>
</StiAxisRange>
<StiAxisTicks>
<Length>Length of one major tick.</Length>
<LengthUnderLabels>A length of one major tick under labels.</LengthUnderLabels>
<MinorCount>Count of minor ticks between two major ticks.</MinorCount>
<MinorLength>Length of one minor tick.</MinorLength>
<MinorVisible>Visibility of minor ticks.</MinorVisible>
<Step>A value that indicates on which steps major ticks will be displayed.</Step>
<Visible>Visility of major ticks.</Visible>
</StiAxisTicks>
<StiAxisTitle>
<Alignment>A title text alignment.</Alignment>
<Antialiasing>A value that control antialiasing drawing mode.</Antialiasing>
<Color>A color which will be used for title drawing.</Color>
<Direction>A text direction for axis title drawing.</Direction>
<Font>A font which will be used for axis title drawing.</Font>
<Position>A title text position.</Position>
<Text>A title text.</Text>
</StiAxisTitle>
<StiBand>
<MaxHeight>Maximal height of band.</MaxHeight>
<MinHeight>Minimal height of band.</MinHeight>
<PrintOnEvenOddPages>A value indicates that the component is printed on even-odd pages.</PrintOnEvenOddPages>
<ResetPageNumber>Allows to reset page number on this band.</ResetPageNumber>
<StartNewPage>A value indicates that it is necessary to print every new string on a new page.</StartNewPage>
<StartNewPageIfLessThan>A value that indicates how much free space on a page (in percentage terms) should be reserved for formation of a new page. The value should be set in the range from 0 to 100. If the value is 100 then, in any case, a new page will be formed. This property is used together with the StartNewPage property.</StartNewPageIfLessThan>
</StiBand>
<StiBandInteraction>
<Collapsed>A boolean expression that indicates whether a group, when rendering, should be collapsed or not.</Collapsed>
<CollapseGroupFooter>A value that indicates whether it is necessary GroupFooter collapsing.</CollapseGroupFooter>
<CollapsingEnabled>A value that indicates whether it is allowed or not data collapsing in the report viewer.</CollapsingEnabled>
<SelectionEnabled>A value which indicates whether it is allowed to select one data row which is output by this DataBand.</SelectionEnabled>
</StiBandInteraction>
<StiBarCode>
<Angle>An angle of a bar-code rotation.</Angle>
<AutoScale>A value that indicates how bar-code will scale its size.</AutoScale>
<BackColor>A background color of bar-code.</BackColor>
<BarCodeType>A type of the bar-code.</BarCodeType>
<Code>An expression to fill a code of bar-code.</Code>
<Font>A font of bar-code.</Font>
<ForeColor>A bar-code color.</ForeColor>
<GetBarCodeEvent>Occurs when getting the code of bar-code.</GetBarCodeEvent>
<ShowLabelText>A value that indicates will this bar-code show a label text or not.</ShowLabelText>
<ShowQuietZones>A value which indicates will this bar code show quiet zones or no.</ShowQuietZones>
<Zoom>A value to multiply by it bar-code size.</Zoom>
</StiBarCode>
<StiBarCodeTypeService>
<AddClearZone>A value that indicates will the Clear Zone be shown.</AddClearZone>
<AspectRatio>A value that set aspect ratio between horizontal and vertical sides of bar-code.</AspectRatio>
<AutoDataColumns>A value indicates that amount of columns will be calculated automatically.</AutoDataColumns>
<AutoDataRows>A value indicates that amount of rows will be calculated automatically.</AutoDataRows>
<Checksum>A mode of checksum.</Checksum>
<CheckSum>A mode of checksum.</CheckSum>
<CheckSum1>A mode of CheckSum1.</CheckSum1>
<CheckSum2>A mode of CheckSum2.</CheckSum2>
<DataColumns>The amount of data columns.</DataColumns>
<DataRows>The amount of data rows.</DataRows>
<EncodingMode>A mode of encoding.</EncodingMode>
<EncodingType>A type of encoding.</EncodingType>
<ErrorsCorrectionLevel>Errors correction level. The higher level is, the more information is added to bar-code for restoring.</ErrorsCorrectionLevel>
<Height>Height factor of the bar-code.</Height>
<MatrixSize>Matrix size.</MatrixSize>
<Module>Width of the most fine element of the bar-code.</Module>
<PrintVerticalBars>A value that indicates whether to print or not vertical sections.</PrintVerticalBars>
<Ratio>A value that indicates the WideToNarrow ratio.</Ratio>
<RatioY>Vertical ratio of bar-code. Value must between 2 and 5.</RatioY>
<ShowQuietZoneIndicator>A value that indicates will show Quiet Zone Indicator or no.</ShowQuietZoneIndicator>
<Space>Space between elements of bar-code.</Space>
<SupplementCode>A component supplement bar-code.</SupplementCode>
<SupplementType>A type of supplement code.</SupplementType>
<UseRectangularSymbols>A value that indicates will RectangularSymbols be used or not.</UseRectangularSymbols>
</StiBarCodeTypeService>
<StiBaseStyle>
<AllowUseBackColor>A value which indicates whether a report engine can use BackColor for dialog controls.</AllowUseBackColor>
<AllowUseBorderFormatting>A value which indicates whether a report engine can use Border formatting or not.</AllowUseBorderFormatting>
<AllowUseBorderSides>A value which indicates whether a report engine can use Border Sides or not.</AllowUseBorderSides>
<AllowUseBorderSidesFromLocation>A value which indicates whether a report engine can set border sides of a component depending on the component location.</AllowUseBorderSidesFromLocation>
<AllowUseBrush>A value which indicates whether a report engine can use Brush formatting or not.</AllowUseBrush>
<AllowUseFont>A value which indicates whether a report engine can use Font formatting or not.</AllowUseFont>
<AllowUseForeColor>A value which indicates whether a report engine can use ForeColor for dialog controls.</AllowUseForeColor>
<AllowUseHorAlignment>A value which indicates whether a report engine can use HorAlignment formatting or not.</AllowUseHorAlignment>
<AllowUseImage>A value which indicates whether a report engine can use Image formatting or not.</AllowUseImage>
<AllowUseTextBrush>A value which indicates whether a report engine can use TextBrush formatting or not.</AllowUseTextBrush>
<AllowUseTextOptions>A value which indicates whether a report engine can use TextOptions formatting or not.</AllowUseTextOptions>
<AllowUseVertAlignment>A value which indicates whether a report engine can use VertAlignment formatting or not.</AllowUseVertAlignment>
<AxisLabelsColor>A color of labels drawing.</AxisLabelsColor>
<AxisLineColor>A line color which used to draw axis.</AxisLineColor>
<AxisTitleColor>A color which will be used for title drawing.</AxisTitleColor>
<BackColor>A background color for drawing this style.</BackColor>
<BasicStyleColor>A base color for drawing this style.</BasicStyleColor>
<Border>The appearance and behavior of the component border.</Border>
<Brush>The brush, which is used to draw background.</Brush>
<BrushType>A value which indicates which type of brush will be used to draw this style.</BrushType>
<ChartAreaBorderColor>A border color of area.</ChartAreaBorderColor>
<ChartAreaBrush>A brush to fill a area.</ChartAreaBrush>
<CollectionName>A name of the styles collection.</CollectionName>
<Color>A color of the style.</Color>
<Conditions>A collection of the style conditions.</Conditions>
<Description>A style description.</Description>
<Font>A font for drawing this style.</Font>
<ForeColor>A foreground color for drawing this style.</ForeColor>
<GridLinesHorColor>A color which will be used for drawing horizontal grid lines.</GridLinesHorColor>
<GridLinesVertColor>A color which will be used for drawing vertical grid lines.</GridLinesVertColor>
<HorAlignment>A horizontal alignment of the style.</HorAlignment>
<Image>An image to fill the Image property of the Image component.</Image>
<InterlacingHorBrush>A brush that is used for drawing horizontal interlacing bar.</InterlacingHorBrush>
<InterlacingVertBrush>A brush that is used for drawing vertical interlacing bar.</InterlacingVertBrush>
<LegendBorderColor>A border color.</LegendBorderColor>
<LegendBrush>A background brush of legend.</LegendBrush>
<LegendLabelsColor>A color of the labels.</LegendLabelsColor>
<LegendTitleColor>A title color of legend.</LegendTitleColor>
<Name>A style name.</Name>
<SeriesLabelsBorderColor>A border color of series labels.</SeriesLabelsBorderColor>
<SeriesLabelsBrush>A brush that will be used to fill area of series labels.</SeriesLabelsBrush>
<SeriesLabelsColor>A foreground color of series labels.</SeriesLabelsColor>
<StyleColors>A list of colors which will be used for drawing chart series.</StyleColors>
<TextBrush>A brush of the style, which is used to display text.</TextBrush>
<VertAlignment>A vertical alignment of the style.</VertAlignment>
</StiBaseStyle>
<StiBorder>
<Color>A border color.</Color>
<DropShadow>A value that indicates whether drop shadow is shown.</DropShadow>
<ShadowBrush>A border shadow brush.</ShadowBrush>
<ShadowSize>Shadow Size.</ShadowSize>
<Side>Frame borders.</Side>
<Size>A border size.</Size>
<Style>A border style.</Style>
<Topmost>A value which indicates that border sides will be drawn on top of all components.</Topmost>
</StiBorder>
<StiBorderSide>
<Color>A border color.</Color>
<Size>A border size.</Size>
<Style>A border style.</Style>
</StiBorderSide>
<StiBusinessObject>
<Alias>An alias of the business object.</Alias>
<Category>A category name of the business object.</Category>
<Columns>A column collection of the business object.</Columns>
<Name>A name of the business object.</Name>
</StiBusinessObject>
<StiButtonControl>
<Cancel>A value that indicates which button is clicked when the user presses the ESCAPE key.</Cancel>
<Default>A value that indicates which button is clicked when the user hits the ENTER key.</Default>
<DialogResult>A value that is returned to the parent form when the button is clicked.</DialogResult>
<Image>An image that is displayed on a button control.</Image>
<ImageAlign>An alignment of the image on the button control.</ImageAlign>
<Text>A text associated with this control.</Text>
<TextAlign>An alignment of the text on the button control.</TextAlign>
</StiButtonControl>
<StiCandlestickSeries>
<ListOfValuesClose>An expression to fill a list of close values. Example: 1;2;3</ListOfValuesClose>
<ListOfValuesHigh>An expression to fill a list of high values. Example: 1;2;3</ListOfValuesHigh>
<ListOfValuesLow>An expression to fill a list of low values. Example: 1;2;3</ListOfValuesLow>
<ListOfValuesOpen>An expression to fill a list of open values. Example: 1;2;3</ListOfValuesOpen>
<ValueClose>The close value expression. Example: {Order.Value}</ValueClose>
<ValueDataColumnClose>A column name column that contains the close value.</ValueDataColumnClose>
<ValueDataColumnHigh>A column name that contains the high value.</ValueDataColumnHigh>
<ValueDataColumnLow>A column name that contains the low value.</ValueDataColumnLow>
<ValueDataColumnOpen>A column name that contains the open value.</ValueDataColumnOpen>
<ValueHigh>The high value expression. Example: {Order.Value}</ValueHigh>
<ValueLow>The low value expression. Example: {Order.Value}</ValueLow>
<ValueOpen>The open value expression. Example: {Order.Value}</ValueOpen>
</StiCandlestickSeries>
<StiCap>
<Color>A cap color.</Color>
<Fill>Fill mode of the cap.</Fill>
<Height>Height of the cap.</Height>
<Style>A cap style.</Style>
<Width>Width of the cap.</Width>
</StiCap>
<StiCardsStyle>
<LineColor>The property defines the color which will be used to draw borders of the cards.</LineColor>
</StiCardsStyle>
<StiChart>
<Area>An area of the chart.</Area>
<ChartType>A type of the chart.</ChartType>
<ConstantLines>Constant lines settings of the chart.</ConstantLines>
<HorSpacing>Horizontal space between border of the chart and the chart.</HorSpacing>
<Legend>Legend settings.</Legend>
<ProcessAtEnd>A value indicates that a chart is processed at the end of the report execution.</ProcessAtEnd>
<ProcessChartEvent>Occurs when getting the ProcessChart.</ProcessChartEvent>
<Rotation>A value which indicates how to rotate an chart before output.</Rotation>
<Series>A list of series.</Series>
<SeriesLabels>Series labels.</SeriesLabels>
<Strips>Strips settings of the chart.</Strips>
<Style>A style of the chart.</Style>
<Table>Chart table settings.</Table>
<Title>Chart title settings.</Title>
<VertSpacing>Vertical space between border of the chart and the chart.</VertSpacing>
</StiChart>
<StiChartArea>
<ColorEach>A value indicates that each series is drawn by its own colour.</ColorEach>
<GridLinesHor>Horizontal grid lines on left axis.</GridLinesHor>
<GridLinesVert>Grid lines on vertical axis.</GridLinesVert>
<InterlacingHor>Interlacing settings on horizontal axis.</InterlacingHor>
<InterlacingVert>Interlacing settings on vertical axis.</InterlacingVert>
<ReverseHor>A value that indicate that all values on horizontal axis is reverse.</ReverseHor>
<ReverseVert>A value that indicate that all values on vertical axis is reverse.</ReverseVert>
<SideBySide>Sets the layout mode of the graphic elements of the chart for each argument - side-by-side or along the Z axis.</SideBySide>
<XAxis>Settings of XAxis.</XAxis>
<XTopAxis>Settings of XTopAxis.</XTopAxis>
<YAxis>Settings of YAxis.</YAxis>
<YRightAxis>Settings of YRightAxis.</YRightAxis>
</StiChartArea>
<StiChartAxis>
<Visible>Visibility of axis.</Visible>
</StiChartAxis>
<StiChartAxisLabels>
<Angle>An angle of label rotation.</Angle>
<Color>A color of labels drawing.</Color>
<Font>a font which will be used for axis label drawing.</Font>
<Placement>A mode of labels placement on axis.</Placement>
<Step>A value which indicates with what steps do labels be shown on axis.</Step>
<TextAfter>A string which will be output after argument string representation.</TextAfter>
<TextAlignment>A label text alignment.</TextAlignment>
<TextBefore>A string which will be output before argument string representation.</TextBefore>
</StiChartAxisLabels>
<StiChartAxisRange>
<Auto>A value indicates that minimum and maximum values will be calculated automatically.</Auto>
<Maximum>Maximum value of axis range.</Maximum>
<Minimum>Minimum value of axis range.</Minimum>
</StiChartAxisRange>
<StiChartAxisTitle>
<Alignment>A title text alignment.</Alignment>
<Color>A color which will be used for title drawing.</Color>
<Font>A font which will be used for axis title drawing.</Font>
<Position>A title text position.</Position>
<Text>A title text.</Text>
<Visible>Title visibility.</Visible>
</StiChartAxisTitle>
<StiChartElement>
<Area>An area of the chart.</Area>
<Arguments>Chart arguments.</Arguments>
<CloseValues>Close values of a chart.</CloseValues>
<ColorEach />
<ConstantLines>Constant lines settings of the chart.</ConstantLines>
<EndValues>End values of a chart.</EndValues>
<Group />
<HighValues>High values of a chart.</HighValues>
<Labels>Series labels.</Labels>
<Legend>Legend settings.</Legend>
<LowValues>Low values of a chart.</LowValues>
<Series>Chart series.</Series>
<Style>A style of a chart.</Style>
<TextFormat>The text format.</TextFormat>
<Title>Chart title.</Title>
<TrendLines>Trend line settings.</TrendLines>
<Values>Chart values.</Values>
<Weights>Weight values of a chart.</Weights>
</StiChartElement>
<StiChartGridLines>
<Color>Color which will be used for drawing major grid lines.</Color>
</StiChartGridLines>
<StiChartInterlacing>
<Color>Color which will be used for drawing interlaced bars.</Color>
<Visible>Visibility of interlaced bars.</Visible>
</StiChartInterlacing>
<StiChartLabels>
<AutoRotate>A value that enables or disables auto rotate mode drawing of series labels.</AutoRotate>
<Font>A font that will be used to draw series labels.</Font>
<ForeColor>A color of labels drawing.</ForeColor>
<Position>A position of the labels.</Position>
<Style>A style of the labels.</Style>
<TextAfter>A text that will be shown after label text.</TextAfter>
<TextBefore>A text that will be shown before label text.</TextBefore>
</StiChartLabels>
<StiChartLegend>
<Columns>Amount of columns.</Columns>
<Direction>Direction which used for series drawing in legend.</Direction>
<HorAlignment>Horizontal alignment of legend placement.</HorAlignment>
<VertAlignment>Vertical alignment of legend placement.</VertAlignment>
<Visible>Visibility of chart legend.</Visible>
</StiChartLegend>
<StiChartLegendLabels>
<Color>A color of the labels.</Color>
<Font>A font which used for series title drawing in chart legend.</Font>
</StiChartLegendLabels>
<StiChartLegendTitle>
<Color>A title color of legend.</Color>
<Font>A title font of the chart legend.</Font>
<Text>A title text of legend.</Text>
</StiChartLegendTitle>
<StiChartStyle>
<ChartAreaShowShadow>The property defines the area shadow will be displayed or not.</ChartAreaShowShadow>
<MarkerVisible>The property defines the marker will be displayed or not.</MarkerVisible>
<SeriesBorderThickness>The property defines the series border width.</SeriesBorderThickness>
<SeriesLabelsLineColor>The property defines the line color of series labels.</SeriesLabelsLineColor>
<SeriesLighting>The property defines the pie lighting will be displayed or not.</SeriesLighting>
<SeriesShowBorder>The property defines the series border will be displayed or not.</SeriesShowBorder>
<SeriesShowShadow>The property defines the series shadow will be displayed or not.</SeriesShowShadow>
<TrendLineColor>The property defines the color of trend line.</TrendLineColor>
<TrendLineShowShadow>The property defines the trend line shadow will be displayed or not.</TrendLineShowShadow>
</StiChartStyle>
<StiChartTable>
<Font>Font of the chart table.</Font>
<GridLineColor>A color of the grid lines.</GridLineColor>
<GridLinesHor>Visibility of grid lines horizontal.</GridLinesHor>
<GridLinesVert>Visibility of grid lines vertical.</GridLinesVert>
<GridOutline>Visibility of grid outline</GridOutline>
<MarkerVisible>Visibility of markers.</MarkerVisible>
<NegativeSeriesColors>A list of colors which will be used for drawing series with negative values.</NegativeSeriesColors>
<SeriesColors>A list of colors which will be used for drawing series.</SeriesColors>
<Visible>Visibility of chart table.</Visible>
</StiChartTable>
<StiChartTitle>
<Alignment>Alignment of chart title.</Alignment>
<Antialiasing>A value that control antialiasing drawing mode of chart title.</Antialiasing>
<Brush>A text brush of the chart title.</Brush>
<Dock>Docking ot chart title.</Dock>
<Font>Font of the chart title.</Font>
<Spacing>Spacing between chart title and chart area.</Spacing>
<Text>A text of the chart title.</Text>
<Visible>Visibility of chart title.</Visible>
</StiChartTitle>
<StiCheckBox>
<Checked>An expression that is used to calculate check state.</Checked>
<CheckStyleForFalse>Check style for the false value.</CheckStyleForFalse>
<CheckStyleForTrue>Check style for the true value.</CheckStyleForTrue>
<ContourColor>A contour color.</ContourColor>
<ExcelValue>An expression that is used to export data to Excel.</ExcelValue>
<GetCheckedEvent>Occurs when state is being checked.</GetCheckedEvent>
<Size>A contour size.</Size>
<Values>A string that describes true and false values.</Values>
</StiCheckBox>
<StiCheckBoxControl>
<Checked>A value indicates whether the check box is in the checked state.</Checked>
<CheckedBinding>Data bindings for the checked.</CheckedBinding>
<CheckedChangedEvent>A script of the CheckedChanged event.</CheckedChangedEvent>
<Text>A text associated with this control.</Text>
<TextBinding>Data bindings for the text.</TextBinding>
</StiCheckBoxControl>
<StiCheckedListBoxControl>
<CheckOnClick>A value indicates whether the check box should be toggled when an item is selected.</CheckOnClick>
<ItemHeight>Height of the item area.</ItemHeight>
<Items>A collection of items in this CheckedListBox.</Items>
<ItemsBinding>A data bindings for the items.</ItemsBinding>
<SelectedIndexBinding>Data bindings for the selected index.</SelectedIndexBinding>
<SelectedIndexChangedEvent>Occurs when the SelectedIndex property has been changed.</SelectedIndexChangedEvent>
<SelectedItemBinding>Data bindings for the selected item.</SelectedItemBinding>
<SelectedValueBinding>Data bindings for the selected value.</SelectedValueBinding>
<SelectionMode>A value specifying the selection mode.</SelectionMode>
<Sorted>A value indicates whether the items in the ListBox are sorted alphabetically.</Sorted>
</StiCheckedListBoxControl>
<StiChildBand>
<KeepChildTogether>A value indicates that childs are to be kept together.</KeepChildTogether>
<PrintIfParentDisabled>Gets or sets value which indicates that if the parent band is disabled then the child band will be printed anyway.</PrintIfParentDisabled>
</StiChildBand>
<StiClone>
<Container>A clone container.</Container>
<ScaleHor>A value indicates that contents of the container will be shrunk or grown.</ScaleHor>
</StiClone>
<StiClusteredColumnArea3D>
<SideBySide>Sets the layout mode of the graphic elements of the chart for each argument - side-by-side or along the Z axis.</SideBySide>
</StiClusteredColumnArea3D>
<StiClusteredColumnSeries>
<Width>Width factor of one bar series. Value 1 is equal to 100%.</Width>
</StiClusteredColumnSeries>
<StiCodabarBarCodeType>
<Height>Gets or sets height factor of the bar code.</Height>
<Module>Gets or sets width of the most fine element of the bar code.</Module>
<Ratio>Get or sets value, which indicates WideToNarrow ratio.</Ratio>
</StiCodabarBarCodeType>
<StiCode11BarCodeType>
<Checksum>Gets or sets mode of checksum.</Checksum>
<Height>Gets or sets height factor of the bar code.</Height>
<Module>Gets or sets width of the most fine element of the bar code.</Module>
</StiCode11BarCodeType>
<StiCode128aBarCodeType>
<Height>Gets or sets height factor of the bar code.</Height>
<Module>Gets or sets width of the most fine element of the bar code.</Module>
</StiCode128aBarCodeType>
<StiCode128AutoBarCodeType>
<Height>Gets or sets height factor of the bar code.</Height>
<Module>Gets or sets width of the most fine element of the bar code.</Module>
</StiCode128AutoBarCodeType>
<StiCode128BarCodeType>
<Height>Gets or sets height factor of the bar code.</Height>
<Module>Gets or sets width of the most fine element of the bar code.</Module>
</StiCode128BarCodeType>
<StiCode128bBarCodeType>
<Height>Gets or sets height factor of the bar code.</Height>
<Module>Gets or sets width of the most fine element of the bar code.</Module>
</StiCode128bBarCodeType>
<StiCode128cBarCodeType>