Class RecommendationSetSettings
Settings class for a Recommendation Set
Inheritance
Namespace: Phoenix.Polaris
Assembly: Phoenix.Plugin.Polaris.dll
Syntax
[Serializable]
public class RecommendationSetSettings : SettingsCategoryBase
Constructors
View SourceRecommendationSetSettings()
Initializes a new instance of the RecommendationSetSettings class.
Declaration
public RecommendationSetSettings()
Properties
View SourceFeedIsCondensed
Gets or sets a value indicating whether the feed is horizontal.
Declaration
public bool FeedIsCondensed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
FeedIsVertical
Gets or sets a value indicating whether the feed is vertical.
Declaration
public bool FeedIsVertical { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
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 |
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 |
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> |
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> |
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> |