Skip to content

release v16.00.19

Compare
Choose a tag to compare
@Arcitectus Arcitectus released this 23 Jan 11:48

New features:

  • the RegionalMarketWindow window now contains MyOrders 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);