### Example: Displaying Component Name Source: https://github.com/stimulsoft/stimulsoft.reports.dashboards.user.manual/blob/main/Report_Internals/Expressions/Using_Component_Properties.md An example of how to display the 'Name' property of a component. ```plaintext {MyComponent.Name} ``` -------------------------------- ### Example with Parent Relationship Source: https://github.com/stimulsoft/stimulsoft.reports.dashboards.user.manual/blob/main/Report_Internals/Expressions/Using_Data_Fields.md An example showing how to get the category name for a product using a parent relationship. ```plaintext {Products.ParentCategories.CategoryName} ``` -------------------------------- ### Font Tag Example Source: https://github.com/stimulsoft/stimulsoft.reports.dashboards.user.manual/blob/main/llms-full.txt An example demonstrating how to use the font tag with color, face, and size attributes. ```html Test Test Test ``` -------------------------------- ### Console Commands for Stimulsoft Designer Source: https://github.com/stimulsoft/stimulsoft.reports.dashboards.user.manual/blob/main/llms-full.txt Examples of launching the Stimulsoft Designer with various commands and parameters. ```bash start Designer.exe ``` ```bash start Designer.exe -startscreen="false" ``` ```bash start Designer.exe -runwizard="" ``` ```bash start Designer.exe d:\Report.mrt ``` ```bash start Designer.exe -cloudreport="Access key" ``` ```bash start Designer.exe -data=d:\MyData ``` ```bash start Designer.exe d:\Report.mrt -run ``` ```bash start Designer.exe -schedule scheduleName ``` -------------------------------- ### Starting Enumeration from 0 Source: https://github.com/stimulsoft/stimulsoft.reports.dashboards.user.manual/blob/main/Report_Internals/Creating_Lists/Enumeration_in_Lists.md This example demonstrates how to start list enumeration from 0 by subtracting 1 from the 'Line' system variable. ```Stimulsoft Expressions {Line - 1}.{Products.ProductName} ``` -------------------------------- ### Example of Totals Prefix Source: https://github.com/stimulsoft/stimulsoft.reports.dashboards.user.manual/blob/main/llms-full.txt Demonstrates how to use the 'Totals' prefix to calculate a sum not associated with bands. ```text {Totals.Sum(DataBand1)} ``` -------------------------------- ### Start Screen Option Source: https://github.com/stimulsoft/stimulsoft.reports.dashboards.user.manual/blob/main/Stimulsoft_Reports_Features_Stimulsoft_Reports_Product_Line/Designers/Console_Commands.md Launches the report designer with the Welcome Screen mode enabled or disabled. ```bash start Designer.exe -startscreen="false" ``` -------------------------------- ### DayOfYear Function Examples Source: https://github.com/stimulsoft/stimulsoft.reports.dashboards.user.manual/blob/main/llms-full.txt Shows how to use the DayOfYear function to get the day number within a year, with examples for specific dates and data sources. ```Stimulsoft Functions {DayOfYear(DateSerial(2022,2,14))} {DayOfYear(DataSource.Column)} ```