release v16.00.19
New features:
- the
RegionalMarketWindow
window now containsMyOrders
for convenient access to sell&buy orders. - the chat participants from the
WindowChatChannel
now contain the flag icon texts.
The following example lists all visible chat participants with name and the flag icon text:
var listParticipantNameAndFlagText =
Sanderling.MemoryMeasurement?.Value?.WindowChatChannel
?.SelectMany(windowChatChannel => windowChatChannel?.ParticipantView?.Entry
?.Select(participantEntry => new {
name = participantEntry?.NameLabel?.Text,
flagText = string.Join(",", (participantEntry?.FlagIcon?.Select(flagIcon => flagIcon?.HintText)).EmptyIfNull()),
})
)?.ToArray();
foreach(var participantNameAndFlagText in listParticipantNameAndFlagText)
Host.Log(participantNameAndFlagText);