constructor for creating a blank Document without an associated DataFormat or Accessor

This commit is contained in:
Michael Becker 2021-07-24 17:17:40 -04:00
parent dca1c130ff
commit 4784086ffb
No known key found for this signature in database
GPG Key ID: 98C333A81F18C22C

View File

@ -108,6 +108,10 @@ namespace UniversalEditor
OnSaved(EventArgs.Empty);
}
public Document(ObjectModel objectModel, string title) : this(objectModel, null, null)
{
Title = title;
}
public Document(ObjectModel objectModel, DataFormat dataFormat) : this(objectModel, dataFormat, null)
{
}