Interface: ICardHeaderExtendedHeaderTagProxy¶
A designer-facing interface that provides access to card header extended header tag item properties.
example
// Working with tag type extended headers
// Assume this rule is bound to a TagItem's Color property
export default function GetTagColor(context) {
const tagProxy = context;
const tagName = tagProxy.getName();
// Determine color based on tag name
if (tagName.includes('HighPriority')) {
return 'Red';
} else if (tagName.includes('MediumPriority')) {
return 'Mango';
} else {
return 'Grey';
}
}
Hierarchy¶
-
ICardHeaderExtendedHeaderTagProxy
Implemented by¶
Summary¶
Properties¶
Class Properties¶
Currently none in this class.
Inherited Properties¶
Methods¶
Class Methods¶
Currently none in this class.