예제 #1
0
파일: Document.cs 프로젝트: perryiv/cadkit
 /// <summary>
 /// Get the array of views.
 /// </summary>
 public CadKit.Interfaces.IDocumentView[] views()
 {
     using (this.Lock.read())
     {
         return((null == _views) ? null : _views.ToArray());
     }
 }