Interface IPublisherSettings
PublisherSettings are meant to display options for configuring a publisher.
Namespace: Unity.Industrial.Forma.Editor.UI.Components
Syntax
public interface IPublisherSettings
Properties
DisplayName
Name of publisher to display in editor
Declaration
string DisplayName { get; }
Property Value
Type | Description |
---|---|
String |
Selected
Whether or not publisher represented is selected
Declaration
bool Selected { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
ShouldBeDisplayedAsync
Whether or not settings should be displayed
Declaration
Task<bool> ShouldBeDisplayedAsync { get; }
Property Value
Type | Description |
---|---|
Task<Boolean> |
Events
OnDisplayChanged
Called when display changes
Declaration
event Action<bool> OnDisplayChanged
Event Type
Type | Description |
---|---|
Action<Boolean> |