Added/Modified comments for API reference of part4
[platform/core/csapi/nui.git] / Tizen.NUI / src / public / TextField.cs
1 /** Copyright (c) 2017 Samsung Electronics Co., Ltd.
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 *
15 */
16 // This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts
17 //------------------------------------------------------------------------------
18 // <auto-generated />
19 //
20 // This file was automatically generated by SWIG (http://www.swig.org).
21 // Version 3.0.9
22 //
23 // Do not make changes to this file unless you know what you are doing--modify
24 // the SWIG interface file instead.
25 //------------------------------------------------------------------------------
26
27 namespace Tizen.NUI
28 {
29
30     using System;
31     using System.Runtime.InteropServices;
32
33     /// <summary>
34     /// A control which provides a single-line editable text field.
35     /// </summary>
36     public class TextField : View
37     {
38         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
39
40         internal TextField(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TextField_SWIGUpcast(cPtr), cMemoryOwn)
41         {
42             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
43         }
44
45         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TextField obj)
46         {
47             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
48         }
49
50         ~TextField()
51         {
52             DisposeQueue.Instance.Add(this);
53         }
54
55         /// <summary>
56         /// Dispose
57         /// </summary>
58         public override void Dispose()
59         {
60             if (!Stage.IsInstalled())
61             {
62                 DisposeQueue.Instance.Add(this);
63                 return;
64             }
65
66             lock (this)
67             {
68                 if (swigCPtr.Handle != global::System.IntPtr.Zero)
69                 {
70                     if (swigCMemOwn)
71                     {
72                         swigCMemOwn = false;
73                         NDalicPINVOKE.delete_TextField(swigCPtr);
74                     }
75                     swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
76                 }
77                 global::System.GC.SuppressFinalize(this);
78                 base.Dispose();
79             }
80         }
81
82         /// <summary>
83         /// Text changed event arguments.
84         /// </summary>
85         public class TextChangedEventArgs : EventArgs
86         {
87             private TextField _textField;
88
89             /// <summary>
90             /// TextField.
91             /// </summary>
92             public TextField TextField
93             {
94                 get
95                 {
96                     return _textField;
97                 }
98                 set
99                 {
100                     _textField = value;
101                 }
102             }
103         }
104
105         /// <summary>
106         /// MaxLengthReached event arguments.
107         /// </summary>
108         public class MaxLengthReachedEventArgs : EventArgs
109         {
110             private TextField _textField;
111
112             /// <summary>
113             /// TextField.
114             /// </summary>
115             public TextField TextField
116             {
117                 get
118                 {
119                     return _textField;
120                 }
121                 set
122                 {
123                     _textField = value;
124                 }
125             }
126         }
127
128
129         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
130         private delegate void TextChangedCallbackDelegate(IntPtr textField);
131         private EventHandler<TextChangedEventArgs> _textFieldTextChangedEventHandler;
132         private TextChangedCallbackDelegate _textFieldTextChangedCallbackDelegate;
133
134         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
135         private delegate void MaxLengthReachedCallbackDelegate(IntPtr textField);
136         private EventHandler<MaxLengthReachedEventArgs> _textFieldMaxLengthReachedEventHandler;
137         private MaxLengthReachedCallbackDelegate _textFieldMaxLengthReachedCallbackDelegate;
138
139         /// <summary>
140         /// TextChanged event.
141         /// </summary>
142         public event EventHandler<TextChangedEventArgs> TextChanged
143         {
144             add
145             {
146                 if (_textFieldTextChangedEventHandler == null)
147                 {
148                     _textFieldTextChangedCallbackDelegate = (OnTextChanged);
149                     TextChangedSignal().Connect(_textFieldTextChangedCallbackDelegate);
150                 }
151                 _textFieldTextChangedEventHandler += value;
152             }
153             remove
154             {
155                 _textFieldTextChangedEventHandler -= value;
156                 if (_textFieldTextChangedEventHandler == null && _textFieldTextChangedCallbackDelegate != null)
157                 {
158                     TextChangedSignal().Disconnect(_textFieldTextChangedCallbackDelegate);
159                 }
160             }
161         }
162
163         private void OnTextChanged(IntPtr textField)
164         {
165             TextChangedEventArgs e = new TextChangedEventArgs();
166
167             // Populate all members of "e" (TextChangedEventArgs) with real data
168             e.TextField = Tizen.NUI.TextField.GetTextFieldFromPtr(textField);
169
170             if (_textFieldTextChangedEventHandler != null)
171             {
172                 //here we send all data to user event handlers
173                 _textFieldTextChangedEventHandler(this, e);
174             }
175
176         }
177
178         /// <summary>
179         /// MaxLengthReached event.
180         /// </summary>
181         public event EventHandler<MaxLengthReachedEventArgs> MaxLengthReached
182         {
183             add
184             {
185                 if (_textFieldMaxLengthReachedEventHandler == null)
186                 {
187                     _textFieldMaxLengthReachedCallbackDelegate = (OnMaxLengthReached);
188                     MaxLengthReachedSignal().Connect(_textFieldMaxLengthReachedCallbackDelegate);
189                 }
190                 _textFieldMaxLengthReachedEventHandler += value;
191             }
192             remove
193             {
194                 if (_textFieldMaxLengthReachedEventHandler == null && _textFieldMaxLengthReachedCallbackDelegate != null)
195                 {
196                     this.MaxLengthReachedSignal().Disconnect(_textFieldMaxLengthReachedCallbackDelegate);
197                 }
198                 _textFieldMaxLengthReachedEventHandler -= value;
199             }
200         }
201
202         private void OnMaxLengthReached(IntPtr textField)
203         {
204             MaxLengthReachedEventArgs e = new MaxLengthReachedEventArgs();
205
206             // Populate all members of "e" (MaxLengthReachedEventArgs) with real data
207             e.TextField = Tizen.NUI.TextField.GetTextFieldFromPtr(textField);
208
209             if (_textFieldMaxLengthReachedEventHandler != null)
210             {
211                 //here we send all data to user event handlers
212                 _textFieldMaxLengthReachedEventHandler(this, e);
213             }
214
215         }
216
217         internal static TextField GetTextFieldFromPtr(global::System.IntPtr cPtr)
218         {
219             TextField ret = new TextField(cPtr, false);
220             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
221             return ret;
222         }
223
224
225         internal class Property : global::System.IDisposable
226         {
227             private global::System.Runtime.InteropServices.HandleRef swigCPtr;
228             protected bool swigCMemOwn;
229
230             internal Property(global::System.IntPtr cPtr, bool cMemoryOwn)
231             {
232                 swigCMemOwn = cMemoryOwn;
233                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
234             }
235
236             internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj)
237             {
238                 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
239             }
240
241             ~Property()
242             {
243                 Dispose();
244             }
245
246             public virtual void Dispose()
247             {
248                 lock (this)
249                 {
250                     if (swigCPtr.Handle != global::System.IntPtr.Zero)
251                     {
252                         if (swigCMemOwn)
253                         {
254                             swigCMemOwn = false;
255                             NDalicPINVOKE.delete_TextField_Property(swigCPtr);
256                         }
257                         swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
258                     }
259                     global::System.GC.SuppressFinalize(this);
260                 }
261             }
262
263             internal Property() : this(NDalicPINVOKE.new_TextField_Property(), true)
264             {
265                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
266             }
267
268             internal static readonly int RENDERING_BACKEND = NDalicPINVOKE.TextField_Property_RENDERING_BACKEND_get();
269             internal static readonly int TEXT = NDalicPINVOKE.TextField_Property_TEXT_get();
270             internal static readonly int PLACEHOLDER_TEXT = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_get();
271             internal static readonly int PLACEHOLDER_TEXT_FOCUSED = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_FOCUSED_get();
272             internal static readonly int FONT_FAMILY = NDalicPINVOKE.TextField_Property_FONT_FAMILY_get();
273             internal static readonly int FONT_STYLE = NDalicPINVOKE.TextField_Property_FONT_STYLE_get();
274             internal static readonly int POINT_SIZE = NDalicPINVOKE.TextField_Property_POINT_SIZE_get();
275             internal static readonly int MAX_LENGTH = NDalicPINVOKE.TextField_Property_MAX_LENGTH_get();
276             internal static readonly int EXCEED_POLICY = NDalicPINVOKE.TextField_Property_EXCEED_POLICY_get();
277             internal static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_HORIZONTAL_ALIGNMENT_get();
278             internal static readonly int VERTICAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_VERTICAL_ALIGNMENT_get();
279             internal static readonly int TEXT_COLOR = NDalicPINVOKE.TextField_Property_TEXT_COLOR_get();
280             internal static readonly int PLACEHOLDER_TEXT_COLOR = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_COLOR_get();
281             internal static readonly int SHADOW_OFFSET = NDalicPINVOKE.TextField_Property_SHADOW_OFFSET_get();
282             internal static readonly int SHADOW_COLOR = NDalicPINVOKE.TextField_Property_SHADOW_COLOR_get();
283             internal static readonly int PRIMARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_PRIMARY_CURSOR_COLOR_get();
284             internal static readonly int SECONDARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_SECONDARY_CURSOR_COLOR_get();
285             internal static readonly int ENABLE_CURSOR_BLINK = NDalicPINVOKE.TextField_Property_ENABLE_CURSOR_BLINK_get();
286             internal static readonly int CURSOR_BLINK_INTERVAL = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_INTERVAL_get();
287             internal static readonly int CURSOR_BLINK_DURATION = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_DURATION_get();
288             internal static readonly int CURSOR_WIDTH = NDalicPINVOKE.TextField_Property_CURSOR_WIDTH_get();
289             internal static readonly int GRAB_HANDLE_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_IMAGE_get();
290             internal static readonly int GRAB_HANDLE_PRESSED_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_PRESSED_IMAGE_get();
291             internal static readonly int SCROLL_THRESHOLD = NDalicPINVOKE.TextField_Property_SCROLL_THRESHOLD_get();
292             internal static readonly int SCROLL_SPEED = NDalicPINVOKE.TextField_Property_SCROLL_SPEED_get();
293             internal static readonly int SELECTION_HANDLE_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_LEFT_get();
294             internal static readonly int SELECTION_HANDLE_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_RIGHT_get();
295             internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get();
296             internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get();
297             internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get();
298             internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get();
299             internal static readonly int SELECTION_HIGHLIGHT_COLOR = NDalicPINVOKE.TextField_Property_SELECTION_HIGHLIGHT_COLOR_get();
300             internal static readonly int DECORATION_BOUNDING_BOX = NDalicPINVOKE.TextField_Property_DECORATION_BOUNDING_BOX_get();
301             internal static readonly int INPUT_METHOD_SETTINGS = NDalicPINVOKE.TextField_Property_INPUT_METHOD_SETTINGS_get();
302             internal static readonly int INPUT_COLOR = NDalicPINVOKE.TextField_Property_INPUT_COLOR_get();
303             internal static readonly int ENABLE_MARKUP = NDalicPINVOKE.TextField_Property_ENABLE_MARKUP_get();
304             internal static readonly int INPUT_FONT_FAMILY = NDalicPINVOKE.TextField_Property_INPUT_FONT_FAMILY_get();
305             internal static readonly int INPUT_FONT_STYLE = NDalicPINVOKE.TextField_Property_INPUT_FONT_STYLE_get();
306             internal static readonly int INPUT_POINT_SIZE = NDalicPINVOKE.TextField_Property_INPUT_POINT_SIZE_get();
307             internal static readonly int UNDERLINE = NDalicPINVOKE.TextField_Property_UNDERLINE_get();
308             internal static readonly int INPUT_UNDERLINE = NDalicPINVOKE.TextField_Property_INPUT_UNDERLINE_get();
309             internal static readonly int SHADOW = NDalicPINVOKE.TextField_Property_SHADOW_get();
310             internal static readonly int INPUT_SHADOW = NDalicPINVOKE.TextField_Property_INPUT_SHADOW_get();
311             internal static readonly int EMBOSS = NDalicPINVOKE.TextField_Property_EMBOSS_get();
312             internal static readonly int INPUT_EMBOSS = NDalicPINVOKE.TextField_Property_INPUT_EMBOSS_get();
313             internal static readonly int OUTLINE = NDalicPINVOKE.TextField_Property_OUTLINE_get();
314             internal static readonly int INPUT_OUTLINE = NDalicPINVOKE.TextField_Property_INPUT_OUTLINE_get();
315
316         }
317
318         internal class InputStyle : global::System.IDisposable
319         {
320             private global::System.Runtime.InteropServices.HandleRef swigCPtr;
321             protected bool swigCMemOwn;
322
323             internal InputStyle(global::System.IntPtr cPtr, bool cMemoryOwn)
324             {
325                 swigCMemOwn = cMemoryOwn;
326                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
327             }
328
329             internal static global::System.Runtime.InteropServices.HandleRef getCPtr(InputStyle obj)
330             {
331                 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
332             }
333
334             ~InputStyle()
335             {
336                 Dispose();
337             }
338
339             public virtual void Dispose()
340             {
341                 lock (this)
342                 {
343                     if (swigCPtr.Handle != global::System.IntPtr.Zero)
344                     {
345                         if (swigCMemOwn)
346                         {
347                             swigCMemOwn = false;
348                             NDalicPINVOKE.delete_TextField_InputStyle(swigCPtr);
349                         }
350                         swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
351                     }
352                     global::System.GC.SuppressFinalize(this);
353                 }
354             }
355
356             internal InputStyle() : this(NDalicPINVOKE.new_TextField_InputStyle(), true)
357             {
358                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
359             }
360
361             internal enum Mask
362             {
363                 None = 0x0000,
364                 Color = 0x0001,
365                 FontFamily = 0x0002,
366                 PointSize = 0x0004,
367                 FontStyle = 0x0008,
368                 Underline = 0x0010,
369                 Shadow = 0x0020,
370                 Emboss = 0x0040,
371                 Outline = 0x0080
372             }
373
374         }
375
376         /// <summary>
377         /// Creates the TextField control.
378         /// </summary>
379         public TextField() : this(NDalicPINVOKE.TextField_New(), true)
380         {
381             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
382
383         }
384         internal TextField(TextField handle) : this(NDalicPINVOKE.new_TextField__SWIG_1(TextField.getCPtr(handle)), true)
385         {
386             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
387         }
388
389         internal TextField Assign(TextField handle)
390         {
391             TextField ret = new TextField(NDalicPINVOKE.TextField_Assign(swigCPtr, TextField.getCPtr(handle)), false);
392             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
393             return ret;
394         }
395
396         /// <summary>
397         /// Downcasts a handle to TextField.
398         /// </summary>
399         /// <param name="handle">Handle to an object</param>
400         /// <returns>Handle to a TextField or an empty handle</returns>
401         public new static TextField DownCast(BaseHandle handle)
402         {
403             TextField ret = new TextField(NDalicPINVOKE.TextField_DownCast(BaseHandle.getCPtr(handle)), true);
404             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
405             return ret;
406         }
407
408         internal TextFieldSignal TextChangedSignal()
409         {
410             TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_TextChangedSignal(swigCPtr), false);
411             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
412             return ret;
413         }
414
415         internal TextFieldSignal MaxLengthReachedSignal()
416         {
417             TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_MaxLengthReachedSignal(swigCPtr), false);
418             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
419             return ret;
420         }
421
422         internal SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t InputStyleChangedSignal()
423         {
424             SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t ret = new SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t(NDalicPINVOKE.TextField_InputStyleChangedSignal(swigCPtr), false);
425             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
426             return ret;
427         }
428
429         internal enum PropertyRange
430         {
431             PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX,
432             PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000
433         }
434
435         internal enum ExceedPolicyType
436         {
437             ExceedPolicyOriginal,
438             ExceedPolicyClip
439         }
440
441         /// <summary>
442         /// RenderingBackend property.
443         /// </summary>
444         public int RenderingBackend
445         {
446             get
447             {
448                 int temp = 0;
449                 GetProperty(TextField.Property.RENDERING_BACKEND).Get(ref temp);
450                 return temp;
451             }
452             set
453             {
454                 SetProperty(TextField.Property.RENDERING_BACKEND, new Tizen.NUI.PropertyValue(value));
455             }
456         }
457
458         /// <summary>
459         /// Text property.
460         /// </summary>
461         public string Text
462         {
463             get
464             {
465                 string temp;
466                 GetProperty(TextField.Property.TEXT).Get(out temp);
467                 return temp;
468             }
469             set
470             {
471                 SetProperty(TextField.Property.TEXT, new Tizen.NUI.PropertyValue(value));
472             }
473         }
474
475         /// <summary>
476         /// PlaceholderText property.
477         /// </summary>
478         public string PlaceholderText
479         {
480             get
481             {
482                 string temp;
483                 GetProperty(TextField.Property.PLACEHOLDER_TEXT).Get(out temp);
484                 return temp;
485             }
486             set
487             {
488                 SetProperty(TextField.Property.PLACEHOLDER_TEXT, new Tizen.NUI.PropertyValue(value));
489             }
490         }
491
492         /// <summary>
493         /// PlaceholderTextFocused property.
494         /// </summary>
495         public string PlaceholderTextFocused
496         {
497             get
498             {
499                 string temp;
500                 GetProperty(TextField.Property.PLACEHOLDER_TEXT_FOCUSED).Get(out temp);
501                 return temp;
502             }
503             set
504             {
505                 SetProperty(TextField.Property.PLACEHOLDER_TEXT_FOCUSED, new Tizen.NUI.PropertyValue(value));
506             }
507         }
508
509         /// <summary>
510         /// FontFamily property.
511         /// </summary>
512         public string FontFamily
513         {
514             get
515             {
516                 string temp;
517                 GetProperty(TextField.Property.FONT_FAMILY).Get(out temp);
518                 return temp;
519             }
520             set
521             {
522                 SetProperty(TextField.Property.FONT_FAMILY, new Tizen.NUI.PropertyValue(value));
523             }
524         }
525
526         /// <summary>
527         /// FontStyle property.
528         /// </summary>
529         public PropertyMap FontStyle
530         {
531             get
532             {
533                 PropertyMap temp = new PropertyMap();
534                 GetProperty(TextField.Property.FONT_STYLE).Get(temp);
535                 return temp;
536             }
537             set
538             {
539                 SetProperty(TextField.Property.FONT_STYLE, new Tizen.NUI.PropertyValue(value));
540             }
541         }
542
543         /// <summary>
544         /// PointSize property.
545         /// </summary>
546         public float PointSize
547         {
548             get
549             {
550                 float temp = 0.0f;
551                 GetProperty(TextField.Property.POINT_SIZE).Get(ref temp);
552                 return temp;
553             }
554             set
555             {
556                 SetProperty(TextField.Property.POINT_SIZE, new Tizen.NUI.PropertyValue(value));
557             }
558         }
559
560         /// <summary>
561         /// MaxLength property.
562         /// </summary>
563         public int MaxLength
564         {
565             get
566             {
567                 int temp = 0;
568                 GetProperty(TextField.Property.MAX_LENGTH).Get(ref temp);
569                 return temp;
570             }
571             set
572             {
573                 SetProperty(TextField.Property.MAX_LENGTH, new Tizen.NUI.PropertyValue(value));
574             }
575         }
576
577         /// <summary>
578         /// ExceedPolicy property.
579         /// </summary>
580         public int ExceedPolicy
581         {
582             get
583             {
584                 int temp = 0;
585                 GetProperty(TextField.Property.EXCEED_POLICY).Get(ref temp);
586                 return temp;
587             }
588             set
589             {
590                 SetProperty(TextField.Property.EXCEED_POLICY, new Tizen.NUI.PropertyValue(value));
591             }
592         }
593
594         /// <summary>
595         /// HorizontalAlignment property.
596         /// </summary>
597         public string HorizontalAlignment
598         {
599             get
600             {
601                 string temp;
602                 GetProperty(TextField.Property.HORIZONTAL_ALIGNMENT).Get(out temp);
603                 return temp;
604             }
605             set
606             {
607                 SetProperty(TextField.Property.HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(value));
608             }
609         }
610
611         /// <summary>
612         /// VerticalAlignment property.
613         /// </summary>
614         public string VerticalAlignment
615         {
616             get
617             {
618                 string temp;
619                 GetProperty(TextField.Property.VERTICAL_ALIGNMENT).Get(out temp);
620                 return temp;
621             }
622             set
623             {
624                 SetProperty(TextField.Property.VERTICAL_ALIGNMENT, new Tizen.NUI.PropertyValue(value));
625             }
626         }
627
628         /// <summary>
629         /// TextColor property.
630         /// </summary>
631         public Color TextColor
632         {
633             get
634             {
635                 Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f);
636                 GetProperty(TextField.Property.TEXT_COLOR).Get(temp);
637                 return temp;
638             }
639             set
640             {
641                 SetProperty(TextField.Property.TEXT_COLOR, new Tizen.NUI.PropertyValue(value));
642             }
643         }
644
645         /// <summary>
646         /// PlaceholderTextColor property.
647         /// </summary>
648         public Vector4 PlaceholderTextColor
649         {
650             get
651             {
652                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
653                 GetProperty(TextField.Property.PLACEHOLDER_TEXT_COLOR).Get(temp);
654                 return temp;
655             }
656             set
657             {
658                 SetProperty(TextField.Property.PLACEHOLDER_TEXT_COLOR, new Tizen.NUI.PropertyValue(value));
659             }
660         }
661
662         /// <summary>
663         /// ShadowOffset property.
664         /// </summary>
665         public Vector2 ShadowOffset
666         {
667             get
668             {
669                 Vector2 temp = new Vector2(0.0f, 0.0f);
670                 GetProperty(TextField.Property.SHADOW_OFFSET).Get(temp);
671                 return temp;
672             }
673             set
674             {
675                 SetProperty(TextField.Property.SHADOW_OFFSET, new Tizen.NUI.PropertyValue(value));
676             }
677         }
678
679         /// <summary>
680         /// ShadowColor property.
681         /// </summary>
682         public Vector4 ShadowColor
683         {
684             get
685             {
686                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
687                 GetProperty(TextField.Property.SHADOW_COLOR).Get(temp);
688                 return temp;
689             }
690             set
691             {
692                 SetProperty(TextField.Property.SHADOW_COLOR, new Tizen.NUI.PropertyValue(value));
693             }
694         }
695
696         /// <summary>
697         /// PrimaryCursorColor property.
698         /// </summary>
699         public Vector4 PrimaryCursorColor
700         {
701             get
702             {
703                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
704                 GetProperty(TextField.Property.PRIMARY_CURSOR_COLOR).Get(temp);
705                 return temp;
706             }
707             set
708             {
709                 SetProperty(TextField.Property.PRIMARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value));
710             }
711         }
712
713         /// <summary>
714         /// SecondaryCursorColor property.
715         /// </summary>
716         public Vector4 SecondaryCursorColor
717         {
718             get
719             {
720                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
721                 GetProperty(TextField.Property.SECONDARY_CURSOR_COLOR).Get(temp);
722                 return temp;
723             }
724             set
725             {
726                 SetProperty(TextField.Property.SECONDARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value));
727             }
728         }
729
730         /// <summary>
731         /// EnableCursorBlink property.
732         /// </summary>
733         public bool EnableCursorBlink
734         {
735             get
736             {
737                 bool temp = false;
738                 GetProperty(TextField.Property.ENABLE_CURSOR_BLINK).Get(ref temp);
739                 return temp;
740             }
741             set
742             {
743                 SetProperty(TextField.Property.ENABLE_CURSOR_BLINK, new Tizen.NUI.PropertyValue(value));
744             }
745         }
746
747         /// <summary>
748         /// CursorBlinkInterval property.
749         /// </summary>
750         public float CursorBlinkInterval
751         {
752             get
753             {
754                 float temp = 0.0f;
755                 GetProperty(TextField.Property.CURSOR_BLINK_INTERVAL).Get(ref temp);
756                 return temp;
757             }
758             set
759             {
760                 SetProperty(TextField.Property.CURSOR_BLINK_INTERVAL, new Tizen.NUI.PropertyValue(value));
761             }
762         }
763
764         /// <summary>
765         /// CursorBlinkDuration property.
766         /// </summary>
767         public float CursorBlinkDuration
768         {
769             get
770             {
771                 float temp = 0.0f;
772                 GetProperty(TextField.Property.CURSOR_BLINK_DURATION).Get(ref temp);
773                 return temp;
774             }
775             set
776             {
777                 SetProperty(TextField.Property.CURSOR_BLINK_DURATION, new Tizen.NUI.PropertyValue(value));
778             }
779         }
780
781         /// <summary>
782         /// CursorWidth property.
783         /// </summary>
784         public int CursorWidth
785         {
786             get
787             {
788                 int temp = 0;
789                 GetProperty(TextField.Property.CURSOR_WIDTH).Get(ref temp);
790                 return temp;
791             }
792             set
793             {
794                 SetProperty(TextField.Property.CURSOR_WIDTH, new Tizen.NUI.PropertyValue(value));
795             }
796         }
797
798         /// <summary>
799         /// GrabHandleImage property.
800         /// </summary>
801         public string GrabHandleImage
802         {
803             get
804             {
805                 string temp;
806                 GetProperty(TextField.Property.GRAB_HANDLE_IMAGE).Get(out temp);
807                 return temp;
808             }
809             set
810             {
811                 SetProperty(TextField.Property.GRAB_HANDLE_IMAGE, new Tizen.NUI.PropertyValue(value));
812             }
813         }
814
815         /// <summary>
816         /// GrabHandlePressedImage property.
817         /// </summary>
818         public string GrabHandlePressedImage
819         {
820             get
821             {
822                 string temp;
823                 GetProperty(TextField.Property.GRAB_HANDLE_PRESSED_IMAGE).Get(out temp);
824                 return temp;
825             }
826             set
827             {
828                 SetProperty(TextField.Property.GRAB_HANDLE_PRESSED_IMAGE, new Tizen.NUI.PropertyValue(value));
829             }
830         }
831
832         /// <summary>
833         /// ScrollThreshold property.
834         /// </summary>
835         public float ScrollThreshold
836         {
837             get
838             {
839                 float temp = 0.0f;
840                 GetProperty(TextField.Property.SCROLL_THRESHOLD).Get(ref temp);
841                 return temp;
842             }
843             set
844             {
845                 SetProperty(TextField.Property.SCROLL_THRESHOLD, new Tizen.NUI.PropertyValue(value));
846             }
847         }
848
849         /// <summary>
850         /// ScrollSpeed property.
851         /// </summary>
852         public float ScrollSpeed
853         {
854             get
855             {
856                 float temp = 0.0f;
857                 GetProperty(TextField.Property.SCROLL_SPEED).Get(ref temp);
858                 return temp;
859             }
860             set
861             {
862                 SetProperty(TextField.Property.SCROLL_SPEED, new Tizen.NUI.PropertyValue(value));
863             }
864         }
865
866         /// <summary>
867         /// SelectionHandleImageLeft property.
868         /// </summary>
869         public PropertyMap SelectionHandleImageLeft
870         {
871             get
872             {
873                 PropertyMap temp = new PropertyMap();
874                 GetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_LEFT).Get(temp);
875                 return temp;
876             }
877             set
878             {
879                 SetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
880             }
881         }
882
883         /// <summary>
884         /// SelectionHandleImageRight property.
885         /// </summary>
886         public PropertyMap SelectionHandleImageRight
887         {
888             get
889             {
890                 PropertyMap temp = new PropertyMap();
891                 GetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT).Get(temp);
892                 return temp;
893             }
894             set
895             {
896                 SetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
897             }
898         }
899
900         /// <summary>
901         /// SelectionHandlePressedImageLeft property.
902         /// </summary>
903         public PropertyMap SelectionHandlePressedImageLeft
904         {
905             get
906             {
907                 PropertyMap temp = new PropertyMap();
908                 GetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT).Get(temp);
909                 return temp;
910             }
911             set
912             {
913                 SetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
914             }
915         }
916
917         /// <summary>
918         /// SelectionHandlePressedImageRight property.
919         /// </summary>
920         public PropertyMap SelectionHandlePressedImageRight
921         {
922             get
923             {
924                 PropertyMap temp = new PropertyMap();
925                 GetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT).Get(temp);
926                 return temp;
927             }
928             set
929             {
930                 SetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
931             }
932         }
933
934         /// <summary>
935         /// SelectionHandleMarkerImageLeft property.
936         /// </summary>
937         public PropertyMap SelectionHandleMarkerImageLeft
938         {
939             get
940             {
941                 PropertyMap temp = new PropertyMap();
942                 GetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT).Get(temp);
943                 return temp;
944             }
945             set
946             {
947                 SetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
948             }
949         }
950
951         /// <summary>
952         /// SelectionHandleMarkerImageRight property.
953         /// </summary>
954         public PropertyMap SelectionHandleMarkerImageRight
955         {
956             get
957             {
958                 PropertyMap temp = new PropertyMap();
959                 GetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT).Get(temp);
960                 return temp;
961             }
962             set
963             {
964                 SetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
965             }
966         }
967
968         /// <summary>
969         /// SelectionHighlightColor property.
970         /// </summary>
971         public Vector4 SelectionHighlightColor
972         {
973             get
974             {
975                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
976                 GetProperty(TextField.Property.SELECTION_HIGHLIGHT_COLOR).Get(temp);
977                 return temp;
978             }
979             set
980             {
981                 SetProperty(TextField.Property.SELECTION_HIGHLIGHT_COLOR, new Tizen.NUI.PropertyValue(value));
982             }
983         }
984
985         /// <summary>
986         /// DecorationBoundingBox property.
987         /// </summary>
988         public Rectangle DecorationBoundingBox
989         {
990             get
991             {
992                 Rectangle temp = new Rectangle(0, 0, 0, 0);
993                 GetProperty(TextField.Property.DECORATION_BOUNDING_BOX).Get(temp);
994                 return temp;
995             }
996             set
997             {
998                 SetProperty(TextField.Property.DECORATION_BOUNDING_BOX, new Tizen.NUI.PropertyValue(value));
999             }
1000         }
1001
1002         /// <summary>
1003         /// InputMethodSettings property.
1004         /// </summary>
1005         public PropertyMap InputMethodSettings
1006         {
1007             get
1008             {
1009                 PropertyMap temp = new PropertyMap();
1010                 GetProperty(TextField.Property.INPUT_METHOD_SETTINGS).Get(temp);
1011                 return temp;
1012             }
1013             set
1014             {
1015                 SetProperty(TextField.Property.INPUT_METHOD_SETTINGS, new Tizen.NUI.PropertyValue(value));
1016             }
1017         }
1018
1019         /// <summary>
1020         /// InputColor property.
1021         /// </summary>
1022         public Vector4 InputColor
1023         {
1024             get
1025             {
1026                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
1027                 GetProperty(TextField.Property.INPUT_COLOR).Get(temp);
1028                 return temp;
1029             }
1030             set
1031             {
1032                 SetProperty(TextField.Property.INPUT_COLOR, new Tizen.NUI.PropertyValue(value));
1033             }
1034         }
1035
1036         /// <summary>
1037         /// EnableMarkup property.
1038         /// </summary>
1039         public bool EnableMarkup
1040         {
1041             get
1042             {
1043                 bool temp = false;
1044                 GetProperty(TextField.Property.ENABLE_MARKUP).Get(ref temp);
1045                 return temp;
1046             }
1047             set
1048             {
1049                 SetProperty(TextField.Property.ENABLE_MARKUP, new Tizen.NUI.PropertyValue(value));
1050             }
1051         }
1052
1053         /// <summary>
1054         /// InputFontFamily property.
1055         /// </summary>
1056         public string InputFontFamily
1057         {
1058             get
1059             {
1060                 string temp;
1061                 GetProperty(TextField.Property.INPUT_FONT_FAMILY).Get(out temp);
1062                 return temp;
1063             }
1064             set
1065             {
1066                 SetProperty(TextField.Property.INPUT_FONT_FAMILY, new Tizen.NUI.PropertyValue(value));
1067             }
1068         }
1069
1070         /// <summary>
1071         /// InputFontStyle property.
1072         /// </summary>
1073         public PropertyMap InputFontStyle
1074         {
1075             get
1076             {
1077                 PropertyMap temp = new PropertyMap();
1078                 GetProperty(TextField.Property.INPUT_FONT_STYLE).Get(temp);
1079                 return temp;
1080             }
1081             set
1082             {
1083                 SetProperty(TextField.Property.INPUT_FONT_STYLE, new Tizen.NUI.PropertyValue(value));
1084             }
1085         }
1086
1087         /// <summary>
1088         /// InputPointSize property.
1089         /// </summary>
1090         public float InputPointSize
1091         {
1092             get
1093             {
1094                 float temp = 0.0f;
1095                 GetProperty(TextField.Property.INPUT_POINT_SIZE).Get(ref temp);
1096                 return temp;
1097             }
1098             set
1099             {
1100                 SetProperty(TextField.Property.INPUT_POINT_SIZE, new Tizen.NUI.PropertyValue(value));
1101             }
1102         }
1103
1104         /// <summary>
1105         /// Underline property.
1106         /// </summary>
1107         public PropertyMap Underline
1108         {
1109             get
1110             {
1111                 PropertyMap temp = new PropertyMap();
1112                 GetProperty(TextField.Property.UNDERLINE).Get(temp);
1113                 return temp;
1114             }
1115             set
1116             {
1117                 SetProperty(TextField.Property.UNDERLINE, new Tizen.NUI.PropertyValue(value));
1118             }
1119         }
1120
1121         /// <summary>
1122         /// InputUnderline property.
1123         /// </summary>
1124         public PropertyMap InputUnderline
1125         {
1126             get
1127             {
1128                 PropertyMap temp = new PropertyMap();
1129                 GetProperty(TextField.Property.INPUT_UNDERLINE).Get(temp);
1130                 return temp;
1131             }
1132             set
1133             {
1134                 SetProperty(TextField.Property.INPUT_UNDERLINE, new Tizen.NUI.PropertyValue(value));
1135             }
1136         }
1137
1138         /// <summary>
1139         /// Shadow property.
1140         /// </summary>
1141         public PropertyMap Shadow
1142         {
1143             get
1144             {
1145                 PropertyMap temp = new PropertyMap();
1146                 GetProperty(TextField.Property.SHADOW).Get(temp);
1147                 return temp;
1148             }
1149             set
1150             {
1151                 SetProperty(TextField.Property.SHADOW, new Tizen.NUI.PropertyValue(value));
1152             }
1153         }
1154
1155         /// <summary>
1156         /// InputShadow property.
1157         /// </summary>
1158         public PropertyMap InputShadow
1159         {
1160             get
1161             {
1162                 PropertyMap temp = new PropertyMap();
1163                 GetProperty(TextField.Property.INPUT_SHADOW).Get(temp);
1164                 return temp;
1165             }
1166             set
1167             {
1168                 SetProperty(TextField.Property.INPUT_SHADOW, new Tizen.NUI.PropertyValue(value));
1169             }
1170         }
1171
1172         /// <summary>
1173         /// Emboss property.
1174         /// </summary>
1175         public PropertyMap Emboss
1176         {
1177             get
1178             {
1179                 PropertyMap temp = new PropertyMap();
1180                 GetProperty(TextField.Property.EMBOSS).Get(temp);
1181                 return temp;
1182             }
1183             set
1184             {
1185                 SetProperty(TextField.Property.EMBOSS, new Tizen.NUI.PropertyValue(value));
1186             }
1187         }
1188
1189         /// <summary>
1190         /// InputEmboss property.
1191         /// </summary>
1192         public PropertyMap InputEmboss
1193         {
1194             get
1195             {
1196                 PropertyMap temp = new PropertyMap();
1197                 GetProperty(TextField.Property.INPUT_EMBOSS).Get(temp);
1198                 return temp;
1199             }
1200             set
1201             {
1202                 SetProperty(TextField.Property.INPUT_EMBOSS, new Tizen.NUI.PropertyValue(value));
1203             }
1204         }
1205
1206         /// <summary>
1207         /// Outline property.
1208         /// </summary>
1209         public PropertyMap Outline
1210         {
1211             get
1212             {
1213                 PropertyMap temp = new PropertyMap();
1214                 GetProperty(TextField.Property.OUTLINE).Get(temp);
1215                 return temp;
1216             }
1217             set
1218             {
1219                 SetProperty(TextField.Property.OUTLINE, new Tizen.NUI.PropertyValue(value));
1220             }
1221         }
1222
1223         /// <summary>
1224         /// InputOutline property.
1225         /// </summary>
1226         public PropertyMap InputOutline
1227         {
1228             get
1229             {
1230                 PropertyMap temp = new PropertyMap();
1231                 GetProperty(TextField.Property.INPUT_OUTLINE).Get(temp);
1232                 return temp;
1233             }
1234             set
1235             {
1236                 SetProperty(TextField.Property.INPUT_OUTLINE, new Tizen.NUI.PropertyValue(value));
1237             }
1238         }
1239
1240     }
1241
1242 }