From 09cd8b4c6dd01f101a5b90160c8bbaeb05341166 Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Fri, 23 Apr 2021 13:42:03 +0900 Subject: [PATCH] [NUI] VectorGraphics.CanvasView: Add missing documentation --- src/Tizen.NUI/src/public/BaseComponents/VectorGraphics/CanvasView.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Tizen.NUI/src/public/BaseComponents/VectorGraphics/CanvasView.cs b/src/Tizen.NUI/src/public/BaseComponents/VectorGraphics/CanvasView.cs index d00925b..2c98e44 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/VectorGraphics/CanvasView.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/VectorGraphics/CanvasView.cs @@ -32,6 +32,7 @@ namespace Tizen.NUI.BaseComponents.VectorGraphics /// Creates an initialized CanvasView. /// /// The size of viewbox. + /// Thrown when viewBox is null. /// 9 [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) -- 2.7.4