From: JunsuChoi Date: Fri, 23 Apr 2021 04:42:03 +0000 (+0900) Subject: [NUI] VectorGraphics.CanvasView: Add missing documentation X-Git-Tag: citest_t1~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=09cd8b4c6dd01f101a5b90160c8bbaeb05341166;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] VectorGraphics.CanvasView: Add missing documentation --- 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)