[Property("SPEC", "Tizen.NUI.BaseComponents.TextEditor.ScrollStateChanged E")]
[Property("SPEC_URL", "-")]
[Property("CRITERIA", "EVL")]
- [Property("AUTHOR", "Xianbing Teng, xb.teng@samsung.com")]
+ [Property("AUTHOR", "Xianbing Teng, xb.teng@samsung.com")]\r
public async Task ScrollStateChanged_CHECK_EVENT()
{
var textEditor = new TextEditor()
{
- Size2D = new Size2D(100, 60),
- Text = "Hello Hello World World",
+ Size2D = new Size2D(50, 50),
+ Text = "Hello Hello World World Tizen!! Hello World, test Test Test Test",
Focusable = true,
};
Window.Instance.Add(textEditor);
try
{
textEditor.ScrollStateChanged += OnScrollStateChanged;
+ textEditor.PixelSize = 10.0f;
FocusManager.Instance.SetCurrentFocusView(textEditor);
await Task.Delay(500);
Assert.IsTrue(_flagScrollStateChanged, "ScrollStateChanged is not be called");