Interface IPropertyInfo
Information about an editor property.
Namespace: Evergine.Editor.Extension
Assembly: Evergine.Editor.Extension.dll
Syntax
public interface IPropertyInfo
Properties
GetIsVisible
Gets or sets the function used to determine the property's visibility.
Declaration
Func<bool> GetIsVisible { get; set; }
Property Value
Type | Description |
---|---|
Func<bool> |
Id
Gets the property ID.
Declaration
string Id { get; }
Property Value
Type | Description |
---|---|
string |
Name
Gets or sets the property name.
Declaration
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Tooltip
Gets or sets the property's tooltip.
Declaration
string Tooltip { get; set; }
Property Value
Type | Description |
---|---|
string |