}
/// <summary>
- /// Force reloading of the image, all visuals using this image will get the latest one.
+ /// Forcefully reloads the image. All the visuals using this image will reload to the latest image.
/// </summary>
/// <since_tizen> 5 </since_tizen>
public void Reload()
}
/// <summary>
- /// Play the animated GIF. This is also Default playback mode.
+ /// Plays the animated GIF. This is also the default playback mode.
/// </summary>
/// <since_tizen> 5 </since_tizen>
public void Play()
}
/// <summary>
- /// Pause the animated GIF.
+ /// Pauses the animated GIF.
/// </summary>
/// <since_tizen> 5 </since_tizen>
public void Pause()
}
/// <summary>
- /// Stop the animated GIF.
+ /// Stops the animated GIF.
/// </summary>
/// <since_tizen> 5 </since_tizen>
public void Stop()
}
/// <summary>
- /// Gets or sets whether to correct orientation of image automatically.<br />
+ /// Gets or sets whether to automatically correct the orientation of an image.<br />
/// </summary>
/// <since_tizen> 5 </since_tizen>
public bool OrientationCorrection
/// <summary>
- /// Get the loading state of the visual resource.
+ /// Gets the loading state of the visual resource.
/// </summary>
/// <since_tizen> 5 </since_tizen>
public ImageView.LoadingStatusType LoadingStatus
}
/// <summary>
- /// Event argument passed through ChildAdded event
+ /// Event argument passed through the ChildAdded event.
/// </summary>
/// <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.
public class ChildAddedEventArgs : EventArgs
{
/// <summary>
- /// Added child View at moment
+ /// Added child view at moment.
/// </summary>
/// <since_tizen> 5 </since_tizen>
public View Added { get; set; }
}
/// <summary>
- /// Event when a child is added
+ /// Event when a child is added.
/// </summary>
/// <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.
}
/// <summary>
- /// Event argument passed through ChildRemoved event
+ /// Event argument passed through the ChildRemoved event.
/// </summary>
/// <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.
public class ChildRemovedEventArgs : EventArgs
{
/// <summary>
- /// Removed child View at moment
+ /// Removed child view at moment.
/// </summary>
/// <since_tizen> 5 </since_tizen>
public View Removed { get; set; }
}
/// <summary>
- /// Event when a child is removed
+ /// Event when a child is removed.
/// </summary>
/// <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.
}
/// <summary>
- /// Gets the parent layer of this view.If a view has no parent, this method does nothing.
+ /// Gets the parent layer of this view.If a view has no parent, this method does not do anything.
/// </summary>
/// <pre>The view has been initialized. </pre>
- /// <returns>the parent layer of view </returns>
+ /// <returns>The parent layer of view </returns>
/// <since_tizen> 5 </since_tizen>
public Layer GetLayer()
{
/// <summary>
/// Perform an action on a visual registered to this view. <br />
- /// Visuals will have actions, this API is used to perform one of these actions with the given attributes.
+ /// Visuals will have actions. This API is used to perform one of these actions with the given attributes.
/// </summary>
/// <param name="propertyIndexOfVisual">The Property index of the visual.</param>
- /// <param name="propertyIndexOfActionId">The action to perform. See Visual to find supported actions.</param>
+ /// <param name="propertyIndexOfActionId">The action to perform. See Visual to find the supported actions.</param>
/// <param name="attributes">Optional attributes for the action.</param>
/// <since_tizen> 5 </since_tizen>
public void DoAction(int propertyIndexOfVisual, int propertyIndexOfActionId, PropertyValue attributes)