RemoveFileProperties

Prj.RemoveFileProperties field

Determines whether all file properties will be removed on save.

public static readonly Key<NullableBool, PrjKey> RemoveFileProperties;

Examples

Shows how to read/write Prj.RemoveFileProperties property.

var project = new Project();

project.Set(Prj.RemoveFileProperties, true);

Console.WriteLine("Remove File Properties: " + project.Get(Prj.RemoveFileProperties));

See Also