2 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
4 * Licensed under the Apache License, Version 2.0 (the License);
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an AS IS BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 using System.Collections.Generic;
21 namespace Tizen.Uix.InputMethod
24 /// Enumeration for the attribute types.
26 /// <since_tizen> 4 </since_tizen>
27 public enum AttributeType
34 /// A font style attribute, for example, underline, etc.
39 /// This class represents the attributes for the pre-edit string.
41 /// <since_tizen> 4 </since_tizen>
42 public class PreEditAttribute
45 /// The start position in the string of this attribute.
47 /// <since_tizen> 4 </since_tizen>
55 /// The character length of this attribute, the range is [Start, Start+Length].
57 /// <since_tizen> 4 </since_tizen>
65 /// The type of this attribute.
67 /// <since_tizen> 4 </since_tizen>
68 public AttributeType Type
75 /// The value of this attribute.
77 /// <since_tizen> 4 </since_tizen>