Commit 7a33c828 authored by Fr33dan's avatar Fr33dan Committed by mrbean-bremen
Browse files

Clarified documentation on null case.

parent de607321
...@@ -422,7 +422,7 @@ namespace Svg ...@@ -422,7 +422,7 @@ namespace Svg
/// Renders the <see cref="SvgDocument"/> to the specified <see cref="Graphics"/>. /// Renders the <see cref="SvgDocument"/> to the specified <see cref="Graphics"/>.
/// </summary> /// </summary>
/// <param name="graphics">The <see cref="Graphics"/> to be rendered to.</param> /// <param name="graphics">The <see cref="Graphics"/> to be rendered to.</param>
/// <param name="size">The <see cref="SizeF"/> to render the document.</param> /// <param name="size">The <see cref="SizeF"/> to render the document. If <c>null</c> document is rendered at the default document size.</param>
/// <exception cref="ArgumentNullException">The <paramref name="graphics"/> parameter cannot be <c>null</c>.</exception> /// <exception cref="ArgumentNullException">The <paramref name="graphics"/> parameter cannot be <c>null</c>.</exception>
public void Draw(Graphics graphics, SizeF? size = null) public void Draw(Graphics graphics, SizeF? size = null)
{ {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment