ClearCanvas.ImageViewer.DisplaySet.Draw C# (CSharp) Method

Draw() public method

Draws the DisplaySet.
The DisplaySet will only be drawn if it is currently visible.
public Draw ( ) : void
return void
		public void Draw()
		{
			if (this.Visible)
			{
				OnDrawing();
				foreach (PresentationImage image in this.PresentationImages)
					image.Draw();
			}
		}