RemDocumentGetNotes Method |
Namespace: Paperwork.Connect
public a_NotesList GetNotes( ObjectID objectId, int pageIndex )
public void GetNotes()
{
ObjectID oid = new ObjectID("FF00010000000001");
int pageindex = 1;
a_NotesList notes = p.rDocument.GetNotes(oid, pageindex);
foreach (a_Notes note in notes.Items)
{
Console.WriteLine("Yazan:{0}", note.Owner);
Console.WriteLine("Not:{0}", note.Message);
}
}