PRIMAVERA | Developers

    Show / Hide Table of Contents

    Class InvBELinhasDestinoTransf

    Classe que identifica uma coleção de linhas de destino de um documento de transferência.

    Inheritance
    System.Object
    InvBaseBE
    InvBELinhasDestinoTransf
    Implements
    System.Collections.Generic.IEnumerable<InvBELinhaDestinoTransf>
    System.Collections.IEnumerable
    Inherited Members
    InvBaseBE.AbvtApl
    Namespace: InvBE100
    Assembly: InvBE100.dll
    Syntax
    public class InvBELinhasDestinoTransf : InvBaseBE, IEnumerable<InvBELinhaDestinoTransf>, IEnumerable

    Constructors

    InvBELinhasDestinoTransf()

    Construtor da classe.

    Inicializa a coleção Removidas.

    Declaration
    public InvBELinhasDestinoTransf()

    InvBELinhasDestinoTransf(IEnumerable<InvBELinhaDestinoTransf>)

    Construtor da classe.

    Inicializa a coleção Removidas.

    Declaration
    public InvBELinhasDestinoTransf(IEnumerable<InvBELinhaDestinoTransf> items)
    Parameters
    Type Name Description
    System.Collections.Generic.IEnumerable<InvBELinhaDestinoTransf> items

    Coleção com as linhas.

    Properties

    NumItens

    Total de linhas na coleção.

    Declaration
    public int NumItens { get; }
    Property Value
    Type Description
    System.Int32

    Removidas

    Coleção com as linhas removidas.

    Declaration
    public BasBELinhasChaves Removidas { get; set; }
    Property Value
    Type Description
    BasBELinhasChaves

    Coleção com as linhas removidas.

    Methods

    Add(Object)

    Insere uma linha na coleção.

    Declaration
    public void Add(object objCampo)
    Parameters
    Type Name Description
    System.Object objCampo

    Finalize()

    Destrutor da classe.

    Destroi a coleção Removidas.

    Declaration
    protected override void Finalize()

    GetEdita(Int32)

    Edita uma linha a partir da coleção.

    Declaration
    public InvBELinhaDestinoTransf GetEdita(int Index)
    Parameters
    Type Name Description
    System.Int32 Index

    Índice da linha.

    Returns
    Type Description
    InvBELinhaDestinoTransf

    Objeto que representa a linha de destino.

    GetEditaId(Object)

    Edita uma linha a partir da coleção.

    Declaration
    public InvBELinhaDestinoTransf GetEditaId(dynamic Chave)
    Parameters
    Type Name Description
    System.Object Chave

    Identificador da linha.

    Returns
    Type Description
    InvBELinhaDestinoTransf

    Objeto que representa a linha de destino.

    Insere(InvBELinhaDestinoTransf)

    Insere uma linha na coleção.

    Declaration
    public dynamic Insere(InvBELinhaDestinoTransf objLinhaDestino)
    Parameters
    Type Name Description
    InvBELinhaDestinoTransf objLinhaDestino

    Objeto que identifica a linha.

    Returns
    Type Description
    System.Object

    Null

    Remove(Int32)

    Remove uma linha da coleção.

    Declaration
    public void Remove(int Index)
    Parameters
    Type Name Description
    System.Int32 Index

    Índice da linha.

    RemoveTodos()

    Remove todas as linhas da coleção.

    Declaration
    public void RemoveTodos()

    Implements

    System.Collections.Generic.IEnumerable<T>
    System.Collections.IEnumerable