Using the Full-Screen Mode in the Designer
Наши примеры проектов и шаблоны отчётов помогут Вам разобраться в основах работы с нашими продуктами.This example shows how to show the report designer in the full screen mode by default. In the full screen mode, the designer will be displayed on all of the available area of the browser window. To enable this mode by default you need to set the
На скриншоте ниже Вы можете увидеть результат выполнения данного кода:

fullScreenMode option in the StiDesignerOptions object:
<script type="text/javascript">
// Set full screen mode for the designer
var options = new Stimulsoft.Designer.StiDesignerOptions();
options.appearance.fullScreenMode = true;
// Create the report designer with specified options
var designer = new Stimulsoft.Designer.StiDesigner(options, "StiDesigner", false);
...
</script>На скриншоте ниже Вы можете увидеть результат выполнения данного кода:
