diff --git a/CSharp/Libraries/UniversalEditor.Core/Document.cs b/CSharp/Libraries/UniversalEditor.Core/Document.cs
index 31e2db9c..8776f320 100644
--- a/CSharp/Libraries/UniversalEditor.Core/Document.cs
+++ b/CSharp/Libraries/UniversalEditor.Core/Document.cs
@@ -143,6 +143,9 @@ namespace UniversalEditor
private LastUsedAccessor mvarLastUsedAccessor = LastUsedAccessor.Input;
private String mvarTitle = String.Empty;
+ ///
+ /// The title of this .
+ ///
public string Title
{
get
@@ -159,8 +162,13 @@ namespace UniversalEditor
}
}
+ ///
+ /// Determines whether the content of this has changed.
+ ///
public bool IsChanged { get; set; }
-
+ ///
+ /// The last-used associated with this .
+ ///
public Accessor Accessor
{
get
@@ -179,7 +187,9 @@ namespace UniversalEditor
return null;
}
}
-
+ ///
+ /// The associated with this .
+ ///
public DataFormat DataFormat
{
get