Interface IDisplayableDescriptorPossibleLayouts
An interface that must be implemented by a constructable class for each DisplayableItemDescriptor implementation detailing the possible layout combinations that it works with
Namespace: LemonEdge.Client.Core.Views.Core
Assembly: ClientCore.dll
Syntax
public interface IDisplayableDescriptorPossibleLayouts
Properties
DisplayableItemDescriptorType
The type of a DisplayableItemDescriptor that this implementation returns all the possible layout combinations it works with for the items it can display
Declaration
Type DisplayableItemDescriptorType { get; }
Property Value
Type | Description |
---|---|
System.Type |
Methods
GetDisplayableLayouts()
Returns a list of all possible layouts (LayoutName and Params combination) this DisplayableItemDescriptorType type works with
Declaration
Task<IEnumerable<(string LayoutName, string Params, Type DisplayableType)>> GetDisplayableLayouts()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<System.ValueTuple<System.String, System.String, System.Type>>> |