mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 07:19:18 +02:00
Docs: LCL/stdctrls. Removes unnecessary whitespace in code examples.
This commit is contained in:
parent
02314916b4
commit
493e4b2f6c
@ -8360,7 +8360,7 @@ property value can be assigned at design-time using the Object Inspector in
|
|||||||
the Lazarus IDE, or at run-time in program code. For example:
|
the Lazarus IDE, or at run-time in program code. For example:
|
||||||
</p>
|
</p>
|
||||||
<code>
|
<code>
|
||||||
Edit1.Text := 'Ångström';
|
Edit1.Text := 'Volts DC';
|
||||||
ShowMessage('Unit Measure = ' + Edit1.Text);
|
ShowMessage('Unit Measure = ' + Edit1.Text);
|
||||||
</code>
|
</code>
|
||||||
<p>
|
<p>
|
||||||
@ -8493,7 +8493,7 @@ The textual values in the multi-line control can be accessed using the
|
|||||||
ordinal position in the list of values. For example:
|
ordinal position in the list of values. For example:
|
||||||
</p>
|
</p>
|
||||||
<code>
|
<code>
|
||||||
// var sContent: String; ...
|
// var sContent: String;
|
||||||
sContent := AMemo.Lines[2];
|
sContent := AMemo.Lines[2];
|
||||||
</code>
|
</code>
|
||||||
<p>
|
<p>
|
||||||
@ -9372,7 +9372,7 @@ Each line of text is separated by the <var>LineEnding</var> character
|
|||||||
sequence for the host platform or operating system. For example:
|
sequence for the host platform or operating system. For example:
|
||||||
</p>
|
</p>
|
||||||
<code>
|
<code>
|
||||||
// var sContent: String; ...
|
// var sContent: String;
|
||||||
sContent := AMemo.Lines.Text;
|
sContent := AMemo.Lines.Text;
|
||||||
</code>
|
</code>
|
||||||
<p>
|
<p>
|
||||||
@ -13861,7 +13861,9 @@ form will reflect the changes as well.
|
|||||||
You can also explicitly change the properties of the object in code by typing
|
You can also explicitly change the properties of the object in code by typing
|
||||||
(in the appropriate Implementation section of the Source editor), for example
|
(in the appropriate Implementation section of the Source editor), for example
|
||||||
</p>
|
</p>
|
||||||
<code>Form1.Button1.Height := 48;</code>
|
<code>
|
||||||
|
Form1.Button1.Height := 48;
|
||||||
|
</code>
|
||||||
<p>
|
<p>
|
||||||
In summary, there are usually about three different ways to determine each
|
In summary, there are usually about three different ways to determine each
|
||||||
property of a component:
|
property of a component:
|
||||||
|
Loading…
Reference in New Issue
Block a user