Interface IComment
All available information on a comment: The comment text, the severity level, the author and time stamp, and for comment threads the comment version.
Inherited Members
System.ICloneable.Clone()
Namespace: Sdl.FileTypeSupport.Framework.NativeApi
Assembly: Sdl.FileTypeSupport.Framework.Core.dll
Syntax
public interface IComment : IMetaDataContainer, ICloneable
Remarks
The comment properties have been explicitly designed to match the commenting features available for TTX and ITD.
Properties
Author
Name of person or system that entered the comment
Declaration
string Author { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Date
Time at which the comment was created or last edited
Declaration
DateTime Date { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
DateSpecified
Declaration
bool DateSpecified { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Severity
Indication of severity of the issue for which the comment has been added
Declaration
Severity Severity { get; set; }
Property Value
Type | Description |
---|---|
Severity |
Text
The text associated with this comment
Declaration
string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Version
Comments in a ICommentProperties collection are assigned incremented version numbers to better be able to track comment threads. The version number should be of the form "1.0", "2.0" etc. for compatibility with TRADOS and SDLX.
Declaration
string Version { get; set; }
Property Value
Type | Description |
---|---|
System.String |