Class SubcaptionComponentBase<TProperties, TClientProperties>
Configures which component to display as a subcaption in listing template.
public abstract class SubcaptionComponentBase<TProperties, TClientProperties> : ISubcaptionComponent where TProperties : class, new() where TClientProperties : class, new()
Type Parameters
TProperties
TClientProperties
- Inheritance
-
objectSubcaptionComponentBase<TProperties, TClientProperties>
- Implements
- Extension Methods
Properties
ComponentName
The name of the component to display as a subcaption.
public abstract string ComponentName { get; }
Property Value
- string
ComponentProperties
Contains properties that can be used in ConfigureComponentClientProperties(TClientProperties) to configure client properties.
public TProperties ComponentProperties { get; set; }
Property Value
- TProperties
Methods
ConfigureComponentClientProperties(TClientProperties)
Configures the client properties of the component used as subcaption.
protected virtual Task ConfigureComponentClientProperties(TClientProperties componentClientProperties)
Parameters
componentClientProperties
TClientPropertiesThe current instance of the component client properties.
Returns
- Task
Remarks
Override this method in order to configure component client properties.
GetClientProperties()
Function providing client properties for the subcaption loader.
public Task<SubcaptionComponentClientProperties> GetClientProperties()