mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-30 19:02:49 +02:00
Improves the naming of a messaging field and adds a little more documentation
git-svn-id: trunk@34958 -
This commit is contained in:
parent
6a8ddee62f
commit
9509a8d797
@ -851,7 +851,10 @@ More cursors
|
||||
<element name="TControlStyleType.csAutoSizeKeepChildTop">
|
||||
<short>when AutoSize=true do not move children vertically</short>
|
||||
</element>
|
||||
<!-- set type Visibility: default -->
|
||||
<element name="TControlStyleType.csRequiresKeyboardInput">
|
||||
<short>Indicates that a control requires keyboard input. This is required in Android and other platforms so that the virtual keyboard is activated when the control receives focus and the device has no hardware keyboard</short>
|
||||
</element>
|
||||
<!-- set type Visibility: default -->
|
||||
<element link="TControlStyleType" name="TControlStyle">
|
||||
<short>Set of control styles.</short>
|
||||
</element>
|
||||
|
@ -119,7 +119,7 @@ the xaxis, yaxis and zaxis properties will remain stopped at the last value read
|
||||
<!-- class Visibility: default -->
|
||||
<element name="TLazDeviceMessage">
|
||||
<short>Represents a message</short>
|
||||
<descr>
|
||||
<descr>Don't create instances of this class directly. Instead use Messaging.CreateMessage().
|
||||
</descr>
|
||||
<errors>
|
||||
</errors>
|
||||
@ -129,8 +129,8 @@ the xaxis, yaxis and zaxis properties will remain stopped at the last value read
|
||||
|
||||
<!-- variable Visibility: public -->
|
||||
<element name="TLazDeviceMessage.bccAddress">
|
||||
<short>The BCC field of E-Mails</short>
|
||||
<descr>
|
||||
<short>A copy should be sent to addresses specified here, but these addresses will not appear in the message</short>
|
||||
<descr>The BCC field of E-Mails, also known as hidden copy
|
||||
</descr>
|
||||
<seealso>
|
||||
</seealso>
|
||||
@ -146,9 +146,9 @@ the xaxis, yaxis and zaxis properties will remain stopped at the last value read
|
||||
</element>
|
||||
|
||||
<!-- variable Visibility: public -->
|
||||
<element name="TLazDeviceMessage.callbackNumber">
|
||||
<short></short>
|
||||
<descr>
|
||||
<element name="TLazDeviceMessage.ReplyToAddress">
|
||||
<short>Might indicate an address different from SourceAddress so that replies are sent to a different address then the message sender</short>
|
||||
<descr>By default this value is empty, which means that the source and reply-to addresses match.
|
||||
</descr>
|
||||
<seealso>
|
||||
</seealso>
|
||||
@ -156,8 +156,8 @@ the xaxis, yaxis and zaxis properties will remain stopped at the last value read
|
||||
|
||||
<!-- variable Visibility: public -->
|
||||
<element name="TLazDeviceMessage.ccAddress">
|
||||
<short>The CC field in E-Mails</short>
|
||||
<descr>
|
||||
<short>A copy should be sent to addresses specified here</short>
|
||||
<descr>The CC field in E-Mails
|
||||
</descr>
|
||||
<seealso>
|
||||
</seealso>
|
||||
|
@ -9,6 +9,9 @@
|
||||
-->
|
||||
|
||||
<module name="ShellCtrls">
|
||||
<short>Controls which display files and directories</short>
|
||||
<descr>
|
||||
</descr>
|
||||
|
||||
<!-- unresolved type reference Visibility: default -->
|
||||
<element name="Classes">
|
||||
|
@ -61,13 +61,13 @@ type
|
||||
// field is available. SMS MMS EMail
|
||||
bccAddress: TStringList; // N N Y
|
||||
Body: string; // Y Y Y
|
||||
callbackNumber: string; // Y N N
|
||||
ccAddress: TstringList; // N N Y
|
||||
destinationAddress: TStringList; // Y Y Y
|
||||
isRead: Boolean; // Y Y Y
|
||||
messageId: string; // Y Y Y
|
||||
//messagePriority Y Y Y
|
||||
messageType: TLazDeviceMessageKind;//Y Y Y
|
||||
ReplyToAddress: string; // Y Y Y
|
||||
sourceAddress: string; // Y Y Y
|
||||
Subject: string; // N Y Y
|
||||
Time: TDateTime; // Y Y Y
|
||||
|
Loading…
Reference in New Issue
Block a user