UMD.HCIL.Piccolo.PNode.ToImage C# (CSharp) Method

ToImage() public method

Return a new Image representing this node and all of its children.
The image size will be equal to the size of this node's full bounds.
public ToImage ( ) : Image
return Image
		public virtual Image ToImage() {
			RectangleF b = FullBounds;
			return ToImage((int) Math.Ceiling(b.Width), (int) Math.Ceiling(b.Height), null);
		}
		

Same methods

PNode::ToImage ( Image image, Brush backgroundBrush ) : Image
PNode::ToImage ( int width, int height, Brush backgroundBrush ) : Image