csharp: updating Factory docs.

Summary: ref T8345

Reviewers: lauromoura, felipealmeida, segfaultxavi, woohyun

Reviewed By: lauromoura

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Maniphest Tasks: T8345

Differential Revision: https://phab.enlightenment.org/D10375
This commit is contained in:
Bruno da Silva Belo 2019-10-14 18:01:30 -03:00 committed by Lauro Moura
parent 87e5fc4c6a
commit 902ea935e4
1 changed files with 3 additions and 4 deletions

View File

@ -14,13 +14,12 @@ namespace Efl { namespace Ui {
/// var factory = Efl.Ui.Factory<Efl.Ui.Button>();
/// factory.Style().Bind("Name"); // The factory Style property is bound to the Name property for the given model.
/// </code>
///
/// Since EFL 1.23.
///
/// </summary>
public class ItemFactory<T> : Efl.Ui.LayoutFactory, IDisposable
{
/// <summary>Creates a new factory.</summary>
/// <summary>Creates a new factory.
/// </summary>
/// <param name="parent">The parent of the factory.</param>
public ItemFactory(Efl.Object parent = null)
: base (parent, typeof(T))
{