string Value { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Value property of the FilterPart struct in the Editor.NodeEditor namespace represents a string value associated with a filter part. This property is used to store or retrieve the specific value that a filter part holds, which can be utilized in various filtering operations within the node editor.

Usage

To use the Value property, you can access it directly from an instance of the FilterPart struct. This property is read-write, allowing you to both get and set the value as needed.

Example

// Example of using the FilterPart struct and its Value property

// Create a new instance of FilterPart
FilterPart filterPart = new FilterPart();

// Set the Value property
filterPart.Value = "ExampleValue";

// Retrieve the Value property
string value = filterPart.Value;

// Output the value
// Note: Avoid using Console.WriteLine in s&box
// Instead, use appropriate logging or UI display methods
// Log.Info(value);