Table of Contents

Class CustomValue

Namespace
Myra.Graphics2D.UI.Properties
Assembly
Myra.dll

Represents a custom name-value pair for use in property editors.

public class CustomValue
Inheritance
CustomValue
Inherited Members

Constructors

CustomValue(string, object)

Initializes a new instance of the CustomValue class.

public CustomValue(string name, object value)

Parameters

name string

The name of the custom value.

value object

The value associated with the name.

Properties

Name

Gets the name of the custom value.

public string Name { get; }

Property Value

string

Value

Gets the value of the custom value.

public object Value { get; }

Property Value

object