[NUI] Add SetOutline, GetOutline to Text Components
authorBowon Ryu <bowon.ryu@samsung.com>
Tue, 10 Aug 2021 07:13:07 +0000 (16:13 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Wed, 18 Aug 2021 03:10:44 +0000 (12:10 +0900)
commit0844b8a0924e9817b09a41b16f85587c28628d1e
treed6ef1f3001f4ad36422009701c390119875856f7
parent3e4fbe95f980d6751e7cf4e4b7cf2b0bc4b4deb4
[NUI] Add SetOutline, GetOutline to Text Components

Add a Outline struct to pass data of DALi Outline PropertyMap.
The Outline struct can be used as an argument to
SetOutline and GetOutline methods.

// example
var outline = new Tizen.NUI.Text.Outline();
outline.Width = 2.0f;
outline.Color = new Color("#45B39D");
label.SetOutline(outline);

Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs
src/Tizen.NUI/src/public/BaseComponents/TextField.cs
src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs
src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs
src/Tizen.NUI/src/public/Common/NUIConstants.cs