I am trying to add a line break in the middle of my description for my components. But I can't seem to find the proper syntax for it.
[Components]
Name: Component A; Description: "This is component A:" + NewLine + "My component A has this stuff";
I am trying to add a line break in the middle of my description for my components. But I can't seem to find the proper syntax for it.
[Components]
Name: Component A; Description: "This is component A:" + NewLine + "My component A has this stuff";
For the component description you can define a custom message where you can specify line breaks by the
%n
tags, e.g.:Line breaks are not supported for
[Components]
section entries, but you can modify your component item descriptions from code (unfortunately, access to the property, which stores a description is indexed and there is no way to find an index by the component name).This example shows how to modify the first component item's description (indexing is 0 based), and how to add a line break to it: