string Value { get; set; }

robot_2Generated
code_blocksInput

Description

The Value property of the IconAttribute class represents the icon's identifier or name. This property is used to specify the icon associated with a type or a type member. The icon can be used for display purposes in user interfaces or other visual representations.

Usage

To use the Value property, you need to apply the IconAttribute to a class, method, or property. The Value should be a string that identifies the icon, which can be a file name, a resource identifier, or any other string that your application uses to reference icons.

Example

[Icon("my-icon-name")]
public class MyClass
{
    // Class implementation
}