namespace Tizen.NUI
{
/// <summary>
- /// A 3D parametric curve.<br />
- /// Paths can be used to animate the position and orientation of actors.<br />
+ /// A 3D parametric curve.
+ /// Paths can be used to animate the position and orientation of views.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public class Path : BaseHandle
{
/// <summary>
- /// Creates an initialized path handle.
+ /// The default constructor. Creates an initialized path handle.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public Path() : this(Interop.Path.New(), true)
}
/// <summary>
- /// Enumeration for the Points.
+ /// Gets or sets the array of points defining the path.
+ /// The property value is a PropertyArray containing the points that define the path.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public PropertyArray Points
}
/// <summary>
- /// Enumeration for the ControlPoints.
+ /// Gets or sets the control points of the path.
+ /// The property value represents the array of control points defining the path.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public PropertyArray ControlPoints
}
/// <summary>
- /// Adds a control point.
+ /// Adds a control point to the path.
/// </summary>
/// <param name="point">The new control point to be added.</param>
/// <since_tizen> 3 </since_tizen>
/// An accessor for the interpolation points.
/// </summary>
/// <param name="index">The index of the interpolation point.</param>
+ /// <returns>The interpolation point at the specified index.</returns>
/// <since_tizen> 3 </since_tizen>
public Vector3 GetPoint(uint index)
{
/// An accessor for the control points.
/// </summary>
/// <param name="index">The index of the control point.</param>
+ /// <returns>The control point at the specified index.</returns>
/// <since_tizen> 3 </since_tizen>
public Vector3 GetControlPoint(uint index)
{
/// <summary>
/// Hidden API (Inhouse API).
- /// Dispose.
+ /// Releases unmanaged and optionally managed resources.
/// </summary>
- /// <param name="disposing"></param>
+ /// <param name="disposing">true to release both managed and unmanaged resources. false to release only unmanaged resources.</param>
[EditorBrowsable(EditorBrowsableState.Never)]
protected virtual void Dispose(bool disposing)
{
}
/// <summary>
- /// The default constructor.
+ /// Initializes a new instance of the <see cref="NUIApplication"/> class.
+ /// This is the default constructor that initializes the NUI application using the NUICoreBackend.
/// </summary>
/// <since_tizen> 3 </since_tizen>
[SuppressMessage("Microsoft.Design", "CA2000: Dispose objects before losing scope", Justification = "NUICoreBackend is disposed in the base class when the application is terminated")]
/// </summary>
/// <param name="windowSize">The window size.</param>
/// <param name="windowPosition">The window position.</param>
- /// <since_tizen> 5 </since_tizen>
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened in the future after ACR done. Before ACR, need to be hidden as inhouse API.
[SuppressMessage("Microsoft.Design", "CA2000: Dispose objects before losing scope", Justification = "NUICoreBackend is disposed in the base class when the application is terminated")]
[EditorBrowsable(EditorBrowsableState.Never)]
public NUIApplication(Size2D windowSize, Position2D windowPosition) : base(new NUICoreBackend("", NUIApplication.WindowMode.Opaque, windowSize, windowPosition))
/// <summary>
/// The constructor with a stylesheet.
+ /// This constructor initializes a new instance of the Tizen.NUI.NUIApplication class with the specified stylesheet.
/// </summary>
- /// <param name="styleSheet">The styleSheet url.</param>
+ /// <param name="styleSheet">The URL of the stylesheet to apply to the application.</param>
/// <since_tizen> 3 </since_tizen>
[SuppressMessage("Microsoft.Design", "CA2000: Dispose objects before losing scope", Justification = "NUICoreBackend is disposed in the base class when the application is terminated")]
public NUIApplication(string styleSheet) : base(new NUICoreBackend(styleSheet))
/// <param name="styleSheet">The styleSheet URL.</param>
/// <param name="windowSize">The window size.</param>
/// <param name="windowPosition">The window position.</param>
- /// <since_tizen> 5 </since_tizen>
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened in the future after ACR done. Before ACR, need to be hidden as inhouse API.
[SuppressMessage("Microsoft.Design", "CA2000: Dispose objects before losing scope", Justification = "NUICoreBackend is disposed in the base class when the application is terminated")]
[EditorBrowsable(EditorBrowsableState.Never)]
public NUIApplication(string styleSheet, Size2D windowSize, Position2D windowPosition) : base(new NUICoreBackend(styleSheet, WindowMode.Opaque, windowSize, windowPosition))
/// <summary>
/// The constructor with a stylesheet and window mode.
+ /// This constructor initializes the NUIApplication with a specified stylesheet and window mode.
/// </summary>
/// <param name="styleSheet">The styleSheet url.</param>
/// <param name="windowMode">The windowMode.</param>
/// <param name="windowMode">The windowMode.</param>
/// <param name="windowSize">The window size.</param>
/// <param name="windowPosition">The window position.</param>
- /// <since_tizen> 5 </since_tizen>
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened in the future after ACR done. Before ACR, need to be hidden as inhouse API.
[SuppressMessage("Microsoft.Design", "CA2000: Dispose objects before losing scope", Justification = "NUICoreBackend is disposed in the base class when the application is terminated")]
[EditorBrowsable(EditorBrowsableState.Never)]
public NUIApplication(string styleSheet, WindowMode windowMode, Size2D windowSize, Position2D windowPosition) : base(new NUICoreBackend(styleSheet, windowMode, windowSize, windowPosition))
}
/// <summary>
- /// Occurs whenever the application is resumed.
+ /// The Resumed event handler.
+ /// This event is triggered when the application resumes from being paused or stopped.
+ /// It can be used to perform actions that need to be executed when the application becomes active again.
/// </summary>
+ /// <example>
+ /// <code>
+ /// NUIApplication app = new NUIApplication();
+ /// app.Resumed += OnAppResumed;
+ ///
+ /// void OnAppResumed(object sender, EventArgs e)
+ /// {
+ /// // Perform actions when the application is resumed
+ /// }
+ /// </code>
+ /// </example>
/// <since_tizen> 4 </since_tizen>
public event EventHandler Resumed;
/// <summary>
- /// Occurs whenever the application is paused.
+ /// The event handler that gets called when the application is paused.
+ /// This event is triggered when the application transitions to a paused state.
/// </summary>
+ /// <example>
+ /// <code>
+ /// NUIApplication app = new NUIApplication();
+ /// app.Paused += OnAppPaused;
+ ///
+ /// void OnAppPaused(object sender, EventArgs e)
+ /// {
+ /// // Perform actions when the application is paused
+ /// }
+ /// </code>
+ /// </example>
/// <since_tizen> 4 </since_tizen>
public event EventHandler Paused;
}
/// <summary>
- /// ResourceManager to handle multilingual.
+ /// The MultilingualResourceManager property provides access to a System.Resources.ResourceManager instance that can be used to manage resources for different languages.
/// </summary>
/// <since_tizen> 4 </since_tizen>
public static System.Resources.ResourceManager MultilingualResourceManager
}
/// <summary>
- /// Register the assembly to XAML.
+ /// Registers the specified assembly to XAML, allowing types within the assembly to be used in XAML files.
/// </summary>
+ /// <param name="assembly">The assembly to register.</param>
/// <since_tizen> 5 </since_tizen>
public static void RegisterAssembly(Assembly assembly)
{
}
/// <summary>
- /// Runs the NUIApplication.
+ /// This method starts the main loop of the application, allowing it to receive events and run its lifecycle.
/// </summary>
- /// <param name="args">Arguments from commandline.</param>
+ /// <param name="args">Arguments from commandline. These arguments can be used to customize the application behavior at startup.</param>
+ /// <example>
+ /// <code>
+ /// static void Main(string[] args)
+ /// {
+ /// NUIApplication app = new NUIApplication();
+ /// app.Run(args);
+ /// }
+ /// </code>
+ /// </example>
/// <since_tizen> 4 </since_tizen>
public override void Run(string[] args)
{
/// <summary>
/// Exits the NUIApplication.
+ /// This method causes the application to terminate gracefully.
/// </summary>
/// <since_tizen> 4 </since_tizen>
public override void Exit()
}
/// <summary>
+ /// The OnLocaleChanged method is called when the system locale settings have changed.
/// Overrides this method if you want to handle behavior.
/// </summary>
+ /// <param name="e">The event arguments containing the new locale information.</param>
/// <since_tizen> 3 </since_tizen>
protected override void OnLocaleChanged(LocaleChangedEventArgs e)
{
}
/// <summary>
+ /// The OnLowBattery method is called when the system is under Low Battery status.
/// Overrides this method if you want to handle behavior.
/// </summary>
+ /// <param name="e">The event arguments containing the battery status.</param>
/// <since_tizen> 3 </since_tizen>
protected override void OnLowBattery(LowBatteryEventArgs e)
{
}
/// <summary>
+ /// The OnLowMemory method is called when the system is under Low Memory status.
/// Overrides this method if you want to handle behavior.
/// </summary>
+ /// <param name="e">The event arguments containing low memory status information.</param>
/// <since_tizen> 3 </since_tizen>
protected override void OnLowMemory(LowMemoryEventArgs e)
{
}
/// <summary>
+ /// This method is called when the system's region format settings have changed.
+ /// It provides an opportunity to handle any necessary adjustments or updates based on the new region format.
/// Overrides this method if you want to handle behavior.
/// </summary>
+ /// <param name="e">The event arguments containing information about the region format change.</param>
/// <since_tizen> 3 </since_tizen>
protected override void OnRegionFormatChanged(RegionFormatChangedEventArgs e)
{
/// <summary>
/// This method is to handle behavior when the device orientation is changed.
- ///
/// When device is rotated to ccw or cw, this event occurs.
/// In addition, this event is different to window orientation changed event.
/// The window orientation event is for per a window and occurs when some flags should be set before.
}
/// <summary>
+ /// This method is called when the application is terminated.
/// Overrides this method if you want to handle behavior.
/// </summary>
/// <since_tizen> 3 </since_tizen>
}
/// <summary>
- /// Overrides this method if you want to handle behavior.
+ /// Overrides this method if you want to handle behavior when the application is paused.
/// </summary>
/// <since_tizen> 3 </since_tizen>
protected virtual void OnPause()
}
/// <summary>
- /// Overrides this method if you want to handle behavior.
+ /// Overrides this method if you want to handle behavior when the application is resumed.
/// </summary>
/// <since_tizen> 3 </since_tizen>
protected virtual void OnResume()
}
/// <summary>
- /// Overrides this method if you want to handle behavior.
+ /// Overrides this method if you want to handle behavior before the application is created.
+ /// This method is guaranteed to be called before <see cref="OnCreate"/> is called.
/// </summary>
/// <since_tizen> 3 </since_tizen>
protected virtual void OnPreCreate()
}
/// <summary>
- /// Overrides this method if you want to handle behavior.
+ /// This method is overridden to handle the application control event received.
/// </summary>
+ /// <param name="e">The event arguments containing the received application control.</param>
/// <since_tizen> 3 </since_tizen>
protected override void OnAppControlReceived(AppControlReceivedEventArgs e)
{
}
/// <summary>
- /// Overrides this method if you want to handle behavior.
+ /// The OnCreate method of NUIApplication class.
+ /// This method is called when the application is created.
+ /// Override this method to handle custom initialization logic.
/// </summary>
/// <since_tizen> 3 </since_tizen>
protected override void OnCreate()
}
/// <summary>
- /// Run NUIWidgetApplication.
+ /// Runs the NUI widget application.
+ /// This method starts the main loop of the application.
/// </summary>
/// <param name="args">Arguments from commandline.</param>
/// <since_tizen> 4 </since_tizen>
}
/// <summary>
- /// Exit NUIWidgetApplication.
+ /// The Exit method of NUIWidgetApplication.
/// </summary>
+ /// <remarks>
+ /// Note that calling this method will terminate the entire application.
+ /// Ensure that all necessary cleanup operations are performed before calling this method.
+ /// </remarks>
/// <since_tizen> 4 </since_tizen>
public override void Exit()
{
}
/// <summary>
- /// Overrides this method if want to handle OnLocaleChanged behavior.
+ /// Override this method to implement custom behavior when the system locale changes.
/// </summary>
+ /// <param name="e">The event arguments containing the new locale information.</param>
/// <since_tizen> 4 </since_tizen>
protected override void OnLocaleChanged(LocaleChangedEventArgs e)
{
}
/// <summary>
- /// Overrides this method if want to handle OnLowBattery behavior.
+ /// The OnLowBattery method is called when the device's battery level is low.
+ /// This method can be overridden to implement custom behavior when the device's battery level is low.
/// </summary>
+ /// <param name="e">The event arguments containing the battery status.</param>
/// <since_tizen> 4 </since_tizen>
protected override void OnLowBattery(LowBatteryEventArgs e)
{
}
/// <summary>
+ /// This method is called when the system is running low on memory.
/// Overrides this method if want to handle OnLowMemory behavior.
/// </summary>
+ /// <param name="e">The event arguments containing the memory status.</param>
/// <since_tizen> 4 </since_tizen>
protected override void OnLowMemory(LowMemoryEventArgs e)
{
}
/// <summary>
- /// Overrides this method if want to handle OnRegionFormatChanged behavior.
+ /// This method can be overridden to implement custom behavior when the region format changes.
/// </summary>
+ /// <param name="e">The event arguments containing information about the region format change.</param>
/// <since_tizen> 4 </since_tizen>
protected override void OnRegionFormatChanged(RegionFormatChangedEventArgs e)
{
/// <summary>
/// This method is to handle behavior when the device orientation is changed.
- ///
/// When device is rotated to ccw or cw, this event occurs.
/// In addition, this event is different to window orientation changed event.
/// The window orientation event is for per a window and occurs when some flags should be set before.
}
/// <summary>
- /// Overrides this method if want to handle OnTerminate behavior.
+ /// This method is called when the application is terminated.
+ /// This method is overridden to perform custom actions when the application terminates.
/// </summary>
/// <since_tizen> 4 </since_tizen>
protected override void OnTerminate()
}
/// <summary>
- /// Overrides this method if want to handle OnPreCreate behavior.
+ /// Overrides this method if you want to handle behavior before the application is created.
+ /// This method is guaranteed to be called before <see cref="OnCreate"/> is called.
/// </summary>
/// <since_tizen> 4 </since_tizen>
protected virtual void OnPreCreate()
}
/// <summary>
- /// Overrides this method if want to handle OnCreate behavior.
+ /// This method is called when the application is created.
+ /// Override this method to handle custom initialization logic.
/// </summary>
/// <since_tizen> 4 </since_tizen>
protected override void OnCreate()
/// <summary>
/// ApplicationTransitionManager Instance for singleton
/// </summary>
+ [EditorBrowsable(EditorBrowsableState.Never)]
public static ApplicationTransitionManager Instance
{
get
/// <since_tizen> 9 </since_tizen>
public class CameraView : View
{
+ /// <summary>
+ /// Enumeration for specifying the display type of the CameraView.
+ /// </summary>
/// <since_tizen> 9 </since_tizen>
public enum DisplayType
{
+ /// <summary>
+ /// The camera view will be displayed using hardware overlay.
+ /// </summary>
Window = 0, // HW overlay
+
+ /// <summary>
+ /// The camera view will be displayed using texture stream.
+ /// </summary>
Image // texture stream
};
/// <since_tizen> 3 </since_tizen>
public class CustomView : ViewWrapper
{
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static BindableProperty FocusNavigationSupportProperty = null;
internal static void SetInternalFocusNavigationSupportProperty(BindableObject bindable, object oldValue, object newValue)
return customView.IsKeyboardNavigationSupported();
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static BindableProperty FocusGroupProperty = null;
internal static void SetInternalFocusGroupProperty(BindableObject bindable, object oldValue, object newValue)
}
/// <summary>
- /// Gets the playing state
+ /// Gets the playing state of the LottieAnimationView.
+ /// This property returns the current play state of the LottieAnimationView.
/// </summary>
/// <since_tizen> 7 </since_tizen>
public PlayStateType PlayState
}
/// <summary>
- /// Sets or gets the stop behavior.
+ /// Sets or gets the stop behavior of the LottieAnimationView.
+ /// This property determines how the animation behaves when it stops.
/// </summary>
/// <since_tizen> 7 </since_tizen>
public StopBehaviorType StopBehavior
}
/// <summary>
- /// Play Animation.
+ /// Plays the Lottie animation.
+ /// This method starts the playback of the Lottie animation.
/// </summary>
/// <since_tizen> 7 </since_tizen>
public new void Play()
}
/// <summary>
- /// Pause Animation.
+ /// Pauses the Lottie animation.
+ /// This method pauses the animation without resetting its progress.
/// </summary>
/// <since_tizen> 7 </since_tizen>
public new void Pause()
}
/// <summary>
- /// Stop Animation.
+ /// Stops the Lottie animation.
+ /// This method stops the currently playing Lottie animation.
/// </summary>
/// <since_tizen> 7 </since_tizen>
public new void Stop()
#region Event, Enum, Struct, ETC
/// <summary>
- /// Animation finished event.
+ /// The event handler for the animation finished event.
/// </summary>
/// <since_tizen> 7 </since_tizen>
public event EventHandler Finished
/// <summary>
/// Create an empty selector.
+ /// This constructor returns an empty selector object which can be used to define various selectors for different states and conditions.
/// </summary>
/// <since_tizen> 9 </since_tizen>
public Selector()
set => Add(ControlState.DisabledFocused, value);
}
/// <summary>
- /// SelectedFocused State.
+ /// Gets or sets the value associated with the SelectedFocused state.
/// </summary>
- /// <remark> This is for XAML. Do not ACR this. </remark>
+ /// <remark> This property is intended for internal use within XAML files and should not be subject to ACR.</remark>
public T SelectedFocused
{
get => GetSafely(x => x.State == ControlState.SelectedFocused);
/// <summary>
/// Returns an enumerator that iterates through the collection.
/// </summary>
- /// <return> An enumerator that can be used to iterate through the collection. </return>
+ /// <returns> An enumerator that can be used to iterate through the collection. </returns>
[EditorBrowsable(EditorBrowsableState.Never)]
public IEnumerator<SelectorItem<T>> GetEnumerator()
{
/// Get value by State.
/// It will traverse from the first item to find proper fit when there is no perfect state match.
/// </summary>
+ /// <param name="state">The state to query for the value.</param>
+ /// <param name="result">The output parameter to store the resulting value if found.</param>
/// <exception cref="ArgumentNullException"> Thrown when state is null. </exception>
- /// <since_tizen> 6 </since_tizen>
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
/// <returns>True if the selector has a given state value, false otherwise.</returns>
[EditorBrowsable(EditorBrowsableState.Never)]
public bool GetValue(ControlState state, out T result)
SelectorItems.Clear();
}
- /// <inheritdoc/>
+ /// <summary>
+ /// Converts the Selector object to its string representation.
+ /// </summary>
+ /// <returns>A string that represents the current selector.</returns>
[EditorBrowsable(EditorBrowsableState.Never)]
public override string ToString()
{
/// Clone itself.
/// If type T implements ICloneable, it calls Clone() method to clone values, otherwise use operator=.
/// </summary>
- /// <since_tizen> 6 </since_tizen>
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// <returns>A new Selector T instance that is a clone of the current selector.</returns>
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public Selector<T> Clone()
{
/// <summary>
/// Determines whether the specified object is equal to the current object.
/// </summary>
+ /// <param name="other">The object to compare with the current object.</param>
+ /// <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
/// <since_tizen> 9 </since_tizen>
public override bool Equals(object other)
{
/// <summary>
/// Serves as the default hash function.
/// </summary>
+ /// <returns>An integer value that specifies the hash code for this instance.</returns>
[EditorBrowsable(EditorBrowsableState.Never)]
public override int GetHashCode()
{
{
/// <summary>
/// The base class of style attributes for a view.
+ /// This class provides a base for defining styles that can be applied to views.
/// </summary>
/// <since_tizen> 9 </since_tizen>
public partial class ViewStyle : BindableObject, IDisposable
/// <summary>
/// Create an empty style instance.
+ /// This constructor initializes an empty style object for a view.
/// </summary>
/// <since_tizen> 9 </since_tizen>
public ViewStyle() { }
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public ViewStyle(ViewStyle viewAttributes)
{
set => SetValue(BackgroundImageProperty, value);
}
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public bool? Focusable
{
set => SetValue(FocusableInTouchProperty, value);
}
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[Obsolete("This has been deprecated. Use Size instead.")]
[EditorBrowsable(EditorBrowsableState.Never)]
public Size2D Size2D
/// <summary>
/// Defines view's opacity value.
+ /// This property allows you to specify different opacity values for various states of the view,
+ /// such as normal, pressed, focused, etc.
/// </summary>
/// <since_tizen> 9 </since_tizen>
public Selector<float?> Opacity
set => SetValue(OpacityProperty, value);
}
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[Obsolete("This has been deprecated. Use Position instead.")]
[EditorBrowsable(EditorBrowsableState.Never)]
public Position2D Position2D
set => SetValue(PositionProperty, value);
}
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public float? PositionX
{
set => SetValue(PositionXProperty, value);
}
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public float? PositionY
{
set => SetValue(PositionYProperty, value);
}
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public Rotation Orientation
{
set => SetValue(OrientationProperty, value);
}
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public DrawModeType? DrawMode
{
set => SetValue(HeightResizePolicyProperty, value);
}
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public bool? WidthForHeight
{
set => SetValue(WidthForHeightProperty, value);
}
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public bool? HeightForWidth
{
set => SetValue(MaximumSizeProperty, value);
}
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public ClippingModeType? ClippingMode
{
}
/// <summary>View BackgroundBorder</summary>
- /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public Selector<Rectangle> BackgroundImageBorder
{
}
/// <summary>
- /// Release instance.
+ /// Releases all resources used by the ViewStyle instance.
+ /// The Dispose method releases all resources used by the ViewStyle instance.
/// </summary>
/// <since_tizen> 9 </since_tizen>
public void Dispose()
}
/// <summary>
- /// Release instance.
+ /// Releases unmanaged and optionally managed resources.
/// </summary>
- /// <param name="disposing"> If it true, the method has been called by a user's code. Otherwise the method has been called by the finalizer. </param>
+ /// <param name="disposing"> If it true, the method has been called by a user's code to release both managed and unmanaged resources. Otherwise the method has been called by the finalizer to release only unmanaged resources.</param>
/// <since_tizen> 9 </since_tizen>
protected virtual void Dispose(bool disposing)
{
}
}
/// <summary>
- /// Padding between cells.
+ /// Gets or sets the padding between cells in the TableView.
+ /// The padding vector specifying the horizontal and vertical padding.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public Vector2 CellPadding
}
/// <summary>
- /// The number of layout rows.
+ /// This property allows setting the number of rows in the table view layout, which can affect how child views are arranged within the table.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public PropertyMap LayoutRows
}
/// <summary>
- /// The number of layout columns.
+ /// Gets or sets the number of layout columns.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public PropertyMap LayoutColumns
/// <summary>
/// The default constructor.
+ /// Initializes the cell position with default values.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public CellPosition() : this(Interop.TableView.NewTableViewCellPosition(), true)
}
/// <summary>
- /// The index or position of a row.
+ /// Gets or sets the index or position of a row.
/// </summary>
/// <since_tizen> 5 </since_tizen>
public uint RowIndex
/// <summary>
- /// The index of a column.
+ /// Gets or sets the index of a column.
/// </summary>
/// <since_tizen> 3 </since_tizen>
[Obsolete("Do not use this, that will be deprecated. Use ColumnIndex instead.")]
}
/// <summary>
- /// The index or position of a column.
+ /// Gets or sets the index or position of a column.
/// </summary>
/// <since_tizen> 5 </since_tizen>
public uint ColumnIndex
}
/// <summary>
- /// The span of a row.
+ /// Gets or sets the span of a row.
/// </summary>
/// <since_tizen> 5 </since_tizen>
public uint RowSpan
}
/// <summary>
- /// The span of a column.
+ /// Gets or sets the span of a column.
/// </summary>
/// <since_tizen> 3 </since_tizen>
[Obsolete("Do not use this, that will be deprecated. Use ColumnSpan instead.")]
}
/// <summary>
- /// The span of a column.
+ /// Gets or sets the span of a column.
/// </summary>
/// <since_tizen> 5 </since_tizen>
public uint ColumnSpan
/// <summary>
/// Creates the TextEditor control.
+ /// This returns a handle to the TextEditor control.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public TextEditor() : this(Interop.TextEditor.New(ThemeManager.GetStyle(defaultStyleName) == null ? false : true), true)
}
/// <summary>
- /// The CursorWidth property.
+ /// Gets or sets the width of the cursor.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public int CursorWidth
}
/// <summary>
- /// The line count of the text.
+ /// Gets the line count of the text.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public int LineCount
}
/// <summary>
- /// Select the whole text.
+ /// Selects the entire text within the TextEditor control.
/// </summary>
/// <since_tizen> 9 </since_tizen>
public void SelectWholeText()
/// <summary>
/// Dispose.
+ /// Releases unmanaged and optionally managed resources.
/// </summary>
+ /// <remarks>
+ /// When overriding this method, you need to distinguish between explicit and implicit conditions. For explicit conditions, release both managed and unmanaged resources. For implicit conditions, only release unmanaged resources.
+ /// </remarks>
+ /// <param name="type">Explicit to release both managed and unmanaged resources. Implicit to release only unmanaged resources.</param>
/// <since_tizen> 3 </since_tizen>
protected override void Dispose(DisposeTypes type)
{
/// <since_tizen> 3 </since_tizen>
public partial class TextEditor
{
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TextProperty = null;
return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.TEXT);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TextColorProperty = null;
return textEditor.internalTextColor;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty FontFamilyProperty = null;
return textEditor.InternalFontFamily;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty FontStyleProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PointSizeProperty = null;
return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.PointSize);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty HorizontalAlignmentProperty = null;
return temp.GetValueByDescription<VerticalAlignment>();
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollThresholdProperty = null;
return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.ScrollThreshold);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollSpeedProperty = null;
return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.ScrollSpeed);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PrimaryCursorColorProperty = null;
return textEditor.internalPrimaryCursorColor;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SecondaryCursorColorProperty = null;
return textEditor.internalSecondaryCursorColor;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EnableCursorBlinkProperty = null;
return Object.InternalGetPropertyBool(textEditor.SwigCPtr, TextEditor.Property.EnableCursorBlink);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty CursorBlinkIntervalProperty = null;
return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.CursorBlinkInterval);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty CursorBlinkDurationProperty = null;
return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.CursorBlinkDuration);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty CursorWidthProperty = null;
return Object.InternalGetPropertyInt(textEditor.SwigCPtr, TextEditor.Property.CursorWidth);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty GrabHandleImageProperty = null;
return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.GrabHandleImage);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty GrabHandlePressedImageProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHandleImageLeftProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHandleImageRightProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHandlePressedImageLeftProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHandlePressedImageRightProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHandleMarkerImageLeftProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHandleMarkerImageRightProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHighlightColorProperty = null;
return textEditor.internalSelectionHighlightColor;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty DecorationBoundingBoxProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EnableMarkupProperty = null;
return Object.InternalGetPropertyBool(textEditor.SwigCPtr, TextEditor.Property.EnableMarkup);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputColorProperty = null;
return textEditor.internalInputColor;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputFontFamilyProperty = null;
return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.InputFontFamily);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputFontStyleProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputPointSizeProperty = null;
return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.InputPointSize);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty LineSpacingProperty = null;
return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.LineSpacing);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputLineSpacingProperty = null;
return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.RelativeLineHeight);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty UnderlineProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputUnderlineProperty = null;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ShadowProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputShadowProperty = null;
return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.InputShadow);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EmbossProperty = null;
return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.EMBOSS);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputEmbossProperty = null;
return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.InputEmboss);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty OutlineProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputOutlineProperty = null;
return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.InputOutline);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SmoothScrollProperty = null;
return Object.InternalGetPropertyBool(textEditor.SwigCPtr, TextEditor.Property.SmoothScroll);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SmoothScrollDurationProperty = null;
return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.SmoothScrollDuration);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EnableScrollBarProperty = null;
return Object.InternalGetPropertyBool(textEditor.SwigCPtr, TextEditor.Property.EnableScrollBar);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollBarShowDurationProperty = null;
return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.ScrollBarShowDuration);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollBarFadeDurationProperty = null;
return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.ScrollBarFadeDuration);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PixelSizeProperty = null;
return Object.InternalGetPropertyFloat(textEditor.SwigCPtr, TextEditor.Property.PixelSize);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PlaceholderTextProperty = null;
return Object.InternalGetPropertyString(textEditor.SwigCPtr, TextEditor.Property.PlaceholderText);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PlaceholderTextColorProperty = null;
return textEditor.internalPlaceholderTextColor;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EnableSelectionProperty = null;
return Object.InternalGetPropertyBool(textEditor.SwigCPtr, TextEditor.Property.EnableSelection);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PlaceholderProperty = null;
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty LineWrapModeProperty = null;
return Object.InternalGetPropertyInt(textEditor.SwigCPtr, TextEditor.Property.LineWrapMode);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EnableShiftSelectionProperty = null;
return Object.InternalGetPropertyBool(textEditor.SwigCPtr, TextEditor.Property.EnableShiftSelection);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty MatchSystemLanguageDirectionProperty = null;
/// <summary>
/// The MaxLengthReached event.
/// </summary>
- /// This will be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandler<MaxLengthReachedEventArgs> MaxLengthReached
{
/// <summary>
/// The MaxLengthReached event arguments.
/// </summary>
- /// This will be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public class MaxLengthReachedEventArgs : EventArgs
{
/// <summary>
/// TextEditor.
/// </summary>
- /// This will be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public TextEditor TextEditor
{
/// Creates the TextField with setting the status of shown or hidden.
/// </summary>
/// <param name="shown">false : Not displayed (hidden), true : displayed (shown)</param>
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public TextField(bool shown) : this(Interop.TextField.New(ThemeManager.GetStyle(defaultStyleName) == null ? false : true), true)
{
}
/// <summary>
- /// The CursorWidth property.
+ /// Gets or sets the width of the cursor.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public int CursorWidth
/// Enables the grab handles for text selection.<br />
/// The default value is true, which means the grab handles are enabled by default.<br />
/// </summary>
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public bool EnableGrabHandle
{
/// Enables the grab handle popup for text selection.<br />
/// The default value is true, which means the grab handle popup is enabled by default.<br />
/// </summary>
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public bool EnableGrabHandlePopup
{
/// <summary>
/// Enable editing in text control.
/// </summary>
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public bool EnableEditing
{
/// <summary>
/// Enables selection of the text using the Shift key.
/// </summary>
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public bool EnableShiftSelection
{
}
/// <summary>
- /// Select the whole text.
+ /// Selects the entire text within the TextField.
/// </summary>
/// <since_tizen> 9 </since_tizen>
public void SelectWholeText()
/// <summary>
/// Dispose.
+ /// Releases unmanaged and optionally managed resources.
/// </summary>
+ /// <remarks>
+ /// When overriding this method, you need to distinguish between explicit and implicit conditions. For explicit conditions, release both managed and unmanaged resources. For implicit conditions, only release unmanaged resources.
+ /// </remarks>
+ /// <param name="type">Explicit to release both managed and unmanaged resources. Implicit to release only unmanaged resources.</param>
/// <since_tizen> 3 </since_tizen>
protected override void Dispose(DisposeTypes type)
{
return textField.translatablePlaceholderTextFocused;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TextProperty = null;
internal static void SetInternalTextProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.TEXT);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PlaceholderTextProperty = null;
internal static void SetInternalPlaceholderTextProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.PlaceholderText);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PlaceholderTextFocusedProperty = null;
internal static void SetInternalPlaceholderTextFocusedProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.PlaceholderTextFocused);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty FontFamilyProperty = null;
internal static void SetInternalFontFamilyProperty(BindableObject bindable, object oldValue, object newValue)
return textField.InternalFontFamily;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty FontStyleProperty = null;
internal static void SetInternalFontStyleProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PointSizeProperty = null;
internal static void SetInternalPointSizeProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyFloat(textField.SwigCPtr, TextField.Property.PointSize);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty MaxLengthProperty = null;
internal static void SetInternalMaxLengthProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyInt(textField.SwigCPtr, TextField.Property.MaxLength);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ExceedPolicyProperty = null;
internal static void SetInternalExceedPolicyProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyInt(textField.SwigCPtr, TextField.Property.ExceedPolicy);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty HorizontalAlignmentProperty = null;
internal static void SetInternalHorizontalAlignmentProperty(BindableObject bindable, object oldValue, object newValue)
return temp.GetValueByDescription<HorizontalAlignment>();
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty VerticalAlignmentProperty = null;
internal static void SetInternalVerticalAlignmentProperty(BindableObject bindable, object oldValue, object newValue)
return temp.GetValueByDescription<VerticalAlignment>();
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TextColorProperty = null;
internal static void SetInternalTextColorProperty(BindableObject bindable, object oldValue, object newValue)
return textField.internalTextColor;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PlaceholderTextColorProperty = null;
internal static void SetInternalPlaceholderTextColorProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyBool(textField.SwigCPtr, TextField.Property.EnableGrabHandlePopup);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PrimaryCursorColorProperty = null;
internal static void SetInternalPrimaryCursorColorProperty(BindableObject bindable, object oldValue, object newValue)
return textField.internalPrimaryCursorColor;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SecondaryCursorColorProperty = null;
internal static void SetInternalSecondaryCursorColorProperty(BindableObject bindable, object oldValue, object newValue)
return textField.internalSecondaryCursorColor;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EnableCursorBlinkProperty = null;
internal static void SetInternalEnableCursorBlinkProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyBool(textField.SwigCPtr, TextField.Property.EnableCursorBlink);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty CursorBlinkIntervalProperty = null;
internal static void SetInternalCursorBlinkIntervalProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyFloat(textField.SwigCPtr, TextField.Property.CursorBlinkInterval);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty CursorBlinkDurationProperty = null;
internal static void SetInternalCursorBlinkDurationProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyFloat(textField.SwigCPtr, TextField.Property.CursorBlinkDuration);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty CursorWidthProperty = null;
internal static void SetInternalCursorWidthProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyInt(textField.SwigCPtr, TextField.Property.CursorWidth);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty GrabHandleImageProperty = null;
internal static void SetInternalGrabHandleImageProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.GrabHandleImage);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty GrabHandlePressedImageProperty = null;
internal static void SetInternalGrabHandlePressedImageProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.GrabHandlePressedImage);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollThresholdProperty = null;
internal static void SetInternalScrollThresholdProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyFloat(textField.SwigCPtr, TextField.Property.ScrollThreshold);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollSpeedProperty = null;
internal static void SetInternalScrollSpeedProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHandleImageLeftProperty = null;
internal static void SetInternalSelectionHandleImageLeftProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHandleImageRightProperty = null;
internal static void SetInternalSelectionHandleImageRightProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHandlePressedImageLeftProperty = null;
internal static void SetInternalSelectionHandlePressedImageLeftProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHandlePressedImageRightProperty = null;
internal static void SetInternalSelectionHandlePressedImageRightProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHandleMarkerImageLeftProperty = null;
internal static void SetInternalSelectionHandleMarkerImageLeftProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHandleMarkerImageRightProperty = null;
internal static void SetInternalSelectionHandleMarkerImageRightProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectionHighlightColorProperty = null;
internal static void SetInternalSelectionHighlightColorProperty(BindableObject bindable, object oldValue, object newValue)
return textField.internalSelectionHighlightColor;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty DecorationBoundingBoxProperty = null;
internal static void SetInternalDecorationBoundingBoxProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputMethodSettingsProperty = null;
internal static void SetInternalInputMethodSettingsProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputColorProperty = null;
internal static void SetInternalInputColorProperty(BindableObject bindable, object oldValue, object newValue)
return textField.internalInputColor;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EnableMarkupProperty = null;
internal static void SetInternalEnableMarkupProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyBool(textField.SwigCPtr, TextField.Property.EnableMarkup);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputFontFamilyProperty = null;
internal static void SetInternalInputFontFamilyProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.InputFontFamily);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputFontStyleProperty = null;
internal static void SetInternalInputFontStyleProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputPointSizeProperty = null;
internal static void SetInternalInputPointSizeProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyFloat(textField.SwigCPtr, TextField.Property.InputPointSize);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty UnderlineProperty = null;
internal static void SetInternalUnderlineProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputUnderlineProperty = null;
internal static void SetInternalInputUnderlineProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.InputUnderline);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ShadowProperty = null;
internal static void SetInternalShadowProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputShadowProperty = null;
internal static void SetInternalInputShadowProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.InputShadow);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EmbossProperty = null;
internal static void SetInternalEmbossProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.EMBOSS);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputEmbossProperty = null;
internal static void SetInternalInputEmbossProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.InputEmboss);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty OutlineProperty = null;
internal static void SetInternalOutlineProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InputOutlineProperty = null;
internal static void SetInternalInputOutlineProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyString(textField.SwigCPtr, TextField.Property.InputOutline);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty HiddenInputSettingsProperty = null;
internal static void SetInternalHiddenInputSettingsProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PixelSizeProperty = null;
internal static void SetInternalPixelSizeProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyFloat(textField.SwigCPtr, TextField.Property.PixelSize);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EnableSelectionProperty = null;
internal static void SetInternalEnableSelectionProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyBool(textField.SwigCPtr, TextField.Property.EnableSelection);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PlaceholderProperty = null;
internal static void SetInternalPlaceholderProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EllipsisProperty = null;
internal static void SetInternalEllipsisProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyInt(textField.SwigCPtr, TextField.Property.EllipsisPosition);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EnableShiftSelectionProperty = null;
internal static void SetInternalEnableShiftSelectionProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyBool(textField.SwigCPtr, TextField.Property.EnableShiftSelection);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty MatchSystemLanguageDirectionProperty = null;
internal static void SetInternalMatchSystemLanguageDirectionProperty(BindableObject bindable, object oldValue, object newValue)
private bool invokeTextChanged = true;
/// <summary>
- /// The TextChanged event.
+ /// The TextChanged event is triggered whenever the text in the TextField changes.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public event EventHandler<TextChangedEventArgs> TextChanged
}
/// <summary>
- /// The MaxLengthReached event.
+ /// The MaxLengthReached event is triggered when the text entered in the TextField exceeds its maximum allowed length.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public event EventHandler<MaxLengthReachedEventArgs> MaxLengthReached
private TextField textField;
/// <summary>
- /// TextField.
+ /// Gets or sets TextField.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public TextField TextField
private TextField textField;
/// <summary>
- /// TextField.
+ /// Gets or sets TextField.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public TextField TextField
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public TextLabel(TextLabelStyle viewStyle) : this(Interop.TextLabel.New(ThemeManager.GetStyle(defaultStyleName) == null ? false : true), true, viewStyle)
{
/// Creates the TextLabel with setting the status of shown or hidden.
/// </summary>
/// <param name="shown">false : Not displayed (hidden), true : displayed (shown)</param>
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public TextLabel(bool shown) : this(Interop.TextLabel.New(ThemeManager.GetStyle(defaultStyleName) == null ? false : true), true)
{
/// </summary>
/// <param name="text">The text to display</param>
/// <param name="shown">false : Not displayed (hidden), true : displayed (shown)</param>
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public TextLabel(string text, bool shown) : this(Interop.TextLabel.New(text, ThemeManager.GetStyle(defaultStyleName) == null ? false : true), true)
{
}
/// <summary>
- /// The line count of the text.
+ /// Gets the line count of the text.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public int LineCount
/// <summary>
/// The direction of the text such as left to right or right to left.
/// </summary>
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public TextDirection TextDirection
{
/// <summary>
/// The vertical line alignment of the text.
/// </summary>
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public VerticalLineAlignment VerticalLineAlignment
{
/// <item><term>fontSize (string)</term><description>The size type of font, You can choose between "pointSize" or "pixelSize". (the default value is "pointSize")</description></item>
/// </list>
/// </summary>
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1721: Property names should not match get methods")]
public PropertyMap TextFit
/// The height of the line in points. <br />
/// If the font size is larger than the line size, it works with the font size. <br />
/// </summary>
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public float MinLineSize
{
return textLabel.translatableText;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TextProperty = null;
internal static void SetInternalTextProperty(BindableObject bindable, object oldValue, object newValue)
return textLabel.textIsEmpty ? "" : Object.InternalGetPropertyString(textLabel.SwigCPtr, TextLabel.Property.TEXT);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty FontFamilyProperty = null;
internal static void SetInternalFontFamilyProperty(BindableObject bindable, object oldValue, object newValue)
return textLabel.InternalFontFamily;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty FontStyleProperty = null;
internal static void SetInternalFontStyleProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PointSizeProperty = null;
internal static void SetInternalPointSizeProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyFloat(textLabel.SwigCPtr, TextLabel.Property.PointSize);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty MultiLineProperty = null;
internal static void SetInternalMultiLineProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyBool(textLabel.SwigCPtr, TextLabel.Property.MultiLine);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty HorizontalAlignmentProperty = null;
internal static void SetInternalHorizontalAlignmentProperty(BindableObject bindable, object oldValue, object newValue)
}
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty VerticalAlignmentProperty = null;
internal static void SetInternalVerticalAlignmentProperty(BindableObject bindable, object oldValue, object newValue)
}
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TextColorProperty = null;
internal static void SetInternalTextColorProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyBool(textLabel.SwigCPtr, TextLabel.Property.RemoveBackInset);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EnableMarkupProperty = null;
internal static void SetInternalEnableMarkupProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyBool(textLabel.SwigCPtr, TextLabel.Property.EnableMarkup);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EnableAutoScrollProperty = null;
internal static void SetInternalEnableAutoScrollProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyBool(textLabel.SwigCPtr, TextLabel.Property.EnableAutoScroll);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty AutoScrollSpeedProperty = null;
internal static void SetInternalAutoScrollSpeedProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyInt(textLabel.SwigCPtr, TextLabel.Property.AutoScrollSpeed);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty AutoScrollLoopCountProperty = null;
internal static void SetInternalAutoScrollLoopCountProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyInt(textLabel.SwigCPtr, TextLabel.Property.AutoScrollLoopCount);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty AutoScrollGapProperty = null;
internal static void SetInternalAutoScrollGapProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyFloat(textLabel.SwigCPtr, TextLabel.Property.AutoScrollGap);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty LineSpacingProperty = null;
internal static void SetInternalLineSpacingProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyFloat(textLabel.SwigCPtr, TextLabel.Property.RelativeLineHeight);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty UnderlineProperty = null;
internal static void SetInternalUnderlineProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ShadowProperty = null;
internal static void SetInternalShadowProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TextShadowProperty = null;
internal static void SetInternalTextShadowProperty(BindableObject bindable, object oldValue, object newValue)
return temp.Empty() ? null : new TextShadow(temp);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EmbossProperty = null;
internal static void SetInternalEmbossProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyString(textLabel.SwigCPtr, TextLabel.Property.EMBOSS);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty OutlineProperty = null;
internal static void SetInternalOutlineProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PixelSizeProperty = null;
internal static void SetInternalPixelSizeProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyFloat(textLabel.SwigCPtr, TextLabel.Property.PixelSize);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EllipsisProperty = null;
internal static void SetInternalEllipsisProperty(BindableObject bindable, object oldValue, object newValue)
return (EllipsisPosition)Object.InternalGetPropertyInt(textLabel.SwigCPtr, TextLabel.Property.EllipsisPosition);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty AutoScrollLoopDelayProperty = null;
internal static void SetInternalAutoScrollLoopDelayProperty(BindableObject bindable, object oldValue, object newValue)
return Object.InternalGetPropertyFloat(textLabel.SwigCPtr, TextLabel.Property.AutoScrollLoopDelay);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty AutoScrollStopModeProperty = null;
internal static void SetInternalAutoScrollStopModeProperty(BindableObject bindable, object oldValue, object newValue)
return temp.GetValueByDescription<AutoScrollStopMode>();
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty LineWrapModeProperty = null;
internal static void SetInternalLineWrapModeProperty(BindableObject bindable, object oldValue, object newValue)
return (LineWrapMode)Object.InternalGetPropertyInt(textLabel.SwigCPtr, TextLabel.Property.LineWrapMode);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty VerticalLineAlignmentProperty = null;
internal static void SetInternalVerticalLineAlignmentProperty(BindableObject bindable, object oldValue, object newValue)
return (VerticalLineAlignment)Object.InternalGetPropertyInt(textLabel.SwigCPtr, TextLabel.Property.VerticalLineAlignment);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty MatchSystemLanguageDirectionProperty = null;
internal static void SetInternalMatchSystemLanguageDirectionProperty(BindableObject bindable, object oldValue, object newValue)
private Color color; //The color value.
/// <summary>
- /// Initialize ColorStop.
+ /// Initializes a new instance of the ColorStop class with the specified offset and color.
/// </summary>
+ /// <param name="offset">The offset at which the color stop applies.</param>
+ /// <param name="color">The color to apply at the specified offset.</param>
/// <since_tizen> 9 </since_tizen>
public ColorStop(float offset, Color color)
{
}
/// <summary>
- /// The relative position of the color.
+ /// Gets or sets the relative position of the color stop along the gradient line.
/// </summary>
/// <since_tizen> 9 </since_tizen>
public float Offset
}
/// <summary>
- /// The color value.
+ /// Gets or sets the color value of the gradient stop.
/// </summary>
/// <since_tizen> 9 </since_tizen>
public Color Color
/// <summary>
/// The commands array.
+ /// This property returns an enumerable collection of PathCommandType representing the path commands.
/// </summary>
/// <exception cref="ArgumentNullException"> Thrown when commands is null. </exception>
/// <since_tizen> 9 </since_tizen>
/// <summary>
/// The points array
+ /// This returns an enumerable collection of floating-point numbers representing the points.
/// </summary>
/// <exception cref="ArgumentNullException"> Thrown when points is null. </exception>
/// <since_tizen> 9 </since_tizen>
{
/// <summary>
/// Creates an initialized Picture.
+ /// This constructor initializes a new instance of the Picture class.
/// </summary>
/// <since_tizen> 9 </since_tizen>
public Picture() : this(Interop.Picture.New(), true)
/// <summary>
/// Creates an initialized Shape.
+ /// This constructor initializes a new instance of the Shape class.
/// </summary>
/// <since_tizen> 9 </since_tizen>
public Shape() : this(Interop.Shape.New(), true)
}
/// <summary>
- /// The current fill rule of the shape.
+ /// Gets or sets the fill rule type for the shape.
+ /// The fill rule type which determines how the interior of a shape is determined.
/// </summary>
/// <since_tizen> 9 </since_tizen>
public FillRuleType FillRule
/// <since_tizen> 3 </since_tizen>
public class VideoView : View
{
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static BindableProperty VideoProperty = null;
internal static void SetInternalVideoProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static BindableProperty LoopingProperty = null;
internal static void SetInternalLoopingProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static BindableProperty MutedProperty = null;
internal static void SetInternalMutedProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static BindableProperty VolumeProperty = null;
internal static void SetInternalVolumeProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static BindableProperty UnderlayProperty = null;
internal static void SetInternalUnderlayProperty(BindableObject bindable, object oldValue, object newValue)
return temp;
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static BindableProperty ResourceUrlProperty = null;
internal static void SetInternalResourceUrlProperty(BindableObject bindable, object oldValue, object newValue)
/// <summary>
/// Dispose.
+ /// Releases unmanaged and optionally managed resources.
/// </summary>
- /// <param name="type">DisposeTypes</param>
+ /// <remarks>
+ /// When overriding this method, you need to distinguish between explicit and implicit conditions. For explicit conditions, release both managed and unmanaged resources. For implicit conditions, only release unmanaged resources.
+ /// </remarks>
+ /// <param name="type">Explicit to release both managed and unmanaged resources. Implicit to release only unmanaged resources.</param>
/// <since_tizen> 3 </since_tizen>
protected override void Dispose(DisposeTypes type)
{
/// <summary>
/// Creates a new instance of a view.
+ /// The default constructor for the View class.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public View() : this(ViewAccessibilityMode.Default)
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public View(ViewStyle viewStyle) : this(Interop.View.New(), true, viewStyle)
{
/// Create a new instance of a View with setting the status of shown or hidden.
/// </summary>
/// <param name="shown">false : Not displayed (hidden), true : displayed (shown)</param>
- /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
+ /// This will be public opened after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
[EditorBrowsable(EditorBrowsableState.Never)]
public View(bool shown) : this(Interop.View.New(), true)
{
/// <summary>
/// Flag to indicate if layout set explicitly via API call or View was automatically given a Layout.
/// </summary>
- /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public bool LayoutSet
{
/// Once a View has a Layout set then any children added to Views from then on will receive
/// automatic Layouts.
/// </summary>
- /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static bool LayoutingDisabled { get; set; } = true;
/// please set <see cref="EnableControlState"/> to true.
/// </summary>
/// <exception cref="ArgumentNullException"> Thrown when set null. </exception>
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public ControlState ControlState
{
/// <summary>
/// Gets / Sets the status of whether the view is excluded from its parent's layouting or not.
/// </summary>
- /// This will be public opened later after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public bool ExcludeLayouting
{
/// <summary>
/// Get or set the border of background image.
/// </summary>
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public Rectangle BackgroundImageBorder
{
}
/// <summary>
- /// The background of view.
+ /// Gets or sets the background of the view.
+ /// This property value is the PropertyMap representing the background.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public Tizen.NUI.PropertyMap Background
}
/// <summary>
- /// The current state of the view.
+ /// Gets or sets the current state of the view.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public States State
/// <summary>
/// Displays a tooltip
+ /// This property allows setting the tooltip properties such as text.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public Tizen.NUI.PropertyMap Tooltip
}
/// <summary>
- /// Gets the view's ID.
- /// Read-only
+ /// Gets The unique identifier of the view. (Read-only)
/// </summary>
/// <since_tizen> 3 </since_tizen>
public uint ID
}
/// <summary>
- /// Gets or sets the status of whether the width size is dependent on the height size.
+ /// Gets or sets the status of whether the width size is dependent on the height size.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public bool WidthForHeight
/// If not specified, the default is false, i.e. the BackgroundImage is loaded asynchronously.
/// Note: For Normal Quad images only.
/// </summary>
- /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public bool BackgroundImageSynchronosLoading
{
/// If not specified, the default is false, i.e. the BackgroundImage is loaded asynchronously.
/// Note: For Normal Quad images only.
/// </summary>
- /// This will be public opened in tizen_7.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public bool BackgroundImageSynchronousLoading
{
}
}
- /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public Vector4 UpdateAreaHint
{
/// Determines which blend equation will be used to render renderers of this actor.
/// </summary>
/// <returns>blend equation enum currently assigned</returns>
- /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public BlendEquationType BlendEquation
{
/// <summary>
/// Clears the background.
+ /// This method removes any background properties set on the view, such as color or image.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public void ClearBackground()
/// </summary>
/// <remarks>Most resources are only loaded when the control is placed on the stage.
/// </remarks>
+ /// <returns>True if all resources are ready, otherwise false.</returns>
/// <since_tizen> 3 </since_tizen>
public bool IsResourceReady()
{
throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}
+ /// <summary>
+ /// Adds a renderer to the view.
+ /// </summary>
+ /// <param name="renderer">The renderer to add.</param>
+ /// <returns>The index of the Renderer that was added to the view.</returns>
/// <since_tizen> 3 </since_tizen>
public uint AddRenderer(Renderer renderer)
{
return ret;
}
+ /// <summary>
+ /// Retrieves the renderer at the specified index.
+ /// </summary>
+ /// <param name="index">The index of the renderer to retrieve.</param>
+ /// <returns>A Renderer object at the specified index.</returns>
+ /// <remarks>
+ /// The index must be between 0 and GetRendererCount()-1
+ /// </remarks>
/// <since_tizen> 3 </since_tizen>
public Renderer GetRendererAt(uint index)
{
return ret;
}
+ /// <summary>
+ /// Removes the specified renderer from the view.
+ /// </summary>
+ /// <param name="renderer">The renderer to remove.</param>
/// <since_tizen> 3 </since_tizen>
public void RemoveRenderer(Renderer renderer)
{
throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}
+ /// <summary>
+ /// Removes a renderer at the specified index from the view.
+ /// </summary>
+ /// <param name="index">The index of the renderer to remove.</param>
/// <since_tizen> 3 </since_tizen>
public void RemoveRenderer(uint index)
{
throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}
- /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public void RotateBy(Degree angle, Vector3 axis)
{
throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}
- /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public void RotateBy(Radian angle, Vector3 axis)
{
throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}
- /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public void RotateBy(Rotation relativeRotation)
{
throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}
- /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public void ScaleBy(Vector3 relativeScale)
{
/// <param name="up">The up vector after target look at. If it is null, up vector become +Y axis</param>
/// <param name="localForward">The forward vector of view when it's orientation is not applied. If it is null, localForward vector become +Z axis</param>
/// <param name="localUp">The up vector of view when it's orientation is not applied. If it is null, localUp vector become +Y axis</param>
- /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public void LookAt(Vector3 target, Vector3 up = null, Vector3 localForward = null, Vector3 localUp = null)
{
throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}
- /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public void SetColorMode(ColorMode colorMode)
{
throw NDalicPINVOKE.SWIGPendingException.Retrieve();
}
- /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be public opened after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public void ObjectDump()
{