IVertexCustom.CustomAttributes

IVertexCustom.CustomAttributes property

Gets a collection of the attribute keys defined in this vertex.

public IEnumerable<string> CustomAttributes { get; }

Examples

private static readonly string[] _CustomNames = { "CustomFloat" };
public IEnumerable<string> CustomAttributes => _CustomNames;

See Also