Autolink

Determines whether inserted or moved tasks are auto linked.

public static readonly Key<NullableBool, PrjKey> Autolink;

Examples

Shows how to read/write Prj.Autolink property.

var project = new Project();

project.Set(Prj.Autolink, true);

Console.WriteLine("Autolink: " + project.Get(Prj.Autolink));

See Also