Show / Hide Table of Contents

Class RecommendationSetSettings

Settings class for a Recommendation Set

Inheritance
System.Object
RecommendationSetSettings
Namespace: Phoenix.Polaris
Assembly: Phoenix.Plugin.Polaris.dll
Syntax
[Serializable]
public class RecommendationSetSettings : SettingsCategoryBase

Constructors

View Source

RecommendationSetSettings()

Initializes a new instance of the RecommendationSetSettings class.

Declaration
public RecommendationSetSettings()

Properties

View Source

FeedIsCondensed

Gets or sets a value indicating whether the feed is horizontal.

Declaration
public bool FeedIsCondensed { get; set; }
Property Value
Type Description
System.Boolean
View Source

FeedIsVertical

Gets or sets a value indicating whether the feed is vertical.

Declaration
public bool FeedIsVertical { get; set; }
Property Value
Type Description
System.Boolean
View Source

FeedMessageDisplayLimit

Gets or sets the number of messages to keep displayed in the console feed.

Declaration
public int FeedMessageDisplayLimit { get; set; }
Property Value
Type Description
System.Int32
View Source

FeedNoDisplayMessageLimit

Gets or sets a value indicating whether there should be a limit on messages to display in the console feed.

Declaration
public bool FeedNoDisplayMessageLimit { get; set; }
Property Value
Type Description
System.Boolean
View Source

RecommendationEnabledList

Gets or sets the list of recommendation enabled states.

Declaration
public List<bool> RecommendationEnabledList { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.Boolean>
View Source

RecommendationNamesList

Gets or sets the list of recommendation names.

Declaration
public List<string> RecommendationNamesList { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>
View Source

VisualHeightsAndWidths

Gets or sets the dictionary of stored heights and widths of visuals in Polaris. TODO: Ideally instead of a string, use a Tuple (double, double) if it can be serialized. TODO: Can't have multiple Serializable Dictionaries, which may limit storing other data.

Declaration
public SerializableDictionary<string, string> VisualHeightsAndWidths { get; set; }
Property Value
Type Description
SerializableDictionary<System.String, System.String>
  • View Source
In This Article
Back to top Generated by DocFX