[NUI] VectorGraphics.CanvasView: Add missing documentation
authorJunsuChoi <jsuya.choi@samsung.com>
Fri, 23 Apr 2021 04:42:03 +0000 (13:42 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Fri, 7 May 2021 01:32:27 +0000 (10:32 +0900)
src/Tizen.NUI/src/public/BaseComponents/VectorGraphics/CanvasView.cs

index d00925b..2c98e44 100755 (executable)
@@ -32,6 +32,7 @@ namespace Tizen.NUI.BaseComponents.VectorGraphics
         /// Creates an initialized CanvasView.
         /// </summary>
         /// <param name="viewBox">The size of viewbox.</param>
+        /// <exception cref="ArgumentNullException"> Thrown when viewBox is null. </exception>
         /// <since_tizen> 9 </since_tizen>
         [SuppressMessage("Microsoft.Design", "CA2000: Dispose objects before losing scope", Justification = "It does not have dispose ownership.")]
         public CanvasView(Size2D viewBox) : this(viewBox == null ? throw new ArgumentNullException(nameof(viewBox)) : Interop.CanvasView.New(Uint16Pair.getCPtr(new Uint16Pair((uint)viewBox.Width, (uint)viewBox.Height))), true)