Show / Hide Table of Contents

    Class NoteComment

    Notes are for authoring and reviewing comments related the the model or to the project.

    Inheritance
    object
    NoteComment
    Inherited Members
    object.GetType()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    public sealed class NoteComment

    Constructors

    NoteComment()

    Notes are for authoring and reviewing comments related the the model or to the project.

    Declaration
    public NoteComment()

    NoteComment(NoteComment)

    Notes are for authoring and reviewing comments related the the model or to the project.

    Declaration
    public NoteComment(NoteComment arg0)
    Parameters
    Type Name Description
    NoteComment arg0

    Properties

    Author

    The author information associated with a comment

    Declaration
    public string Author { get; set; }
    Property Value
    Type Description
    string

    Comment

    The comment information associated with a comment

    Declaration
    public string Comment { get; set; }
    Property Value
    Type Description
    string

    Date

    The date information associated with a comment

    Declaration
    public string Date { get; set; }
    Property Value
    Type Description
    string

    Methods

    ~NoteComment()

    Notes are for authoring and reviewing comments related the the model or to the project.

    Declaration
    protected ~NoteComment()

    SetAuthorUser()

    Set the Author string to the user's name

    Declaration
    public void SetAuthorUser()

    SetDateNow()

    Set the Date string to the formatted current local time

    Declaration
    public void SetDateNow()
    Back to top