Notes

Rsc.Notes field

The text notes associated with a resource.

public static readonly Key<string, RscKey> Notes;

Examples

Shows how to read/write Rsc.Notes property.

var project = new Project();

var resource = project.Resources.Add("Resource");

resource.Set(Rsc.Notes, "Resource Notes");

Console.WriteLine("Notes: " + resource.Get(Rsc.Notes));

See Also