PRIMAVERA | Developers

    Show / Hide Table of Contents

    Class StdBEMatrix

    Matriz de elementos de log.

    Inheritance
    System.Object
    StdBEMatrix
    Implements
    System.Collections.IEnumerable
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: StdPlatBE100
    Assembly: StdPlatBE100.dll
    Syntax
    public class StdBEMatrix : IEnumerable

    Constructors

    StdBEMatrix()

    Declaration
    public StdBEMatrix()

    Properties

    Count

    Número de objectos existentes na matriz.

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

    Item[Object]

    Devolve um elemento da matriz.

    Declaration
    public StdBEMatrixItem this[object vntIndexKey] { get; }
    Parameters
    Type Name Description
    System.Object vntIndexKey

    Chave do elemento ou o seu índice na colecção.

    Property Value
    Type Description
    StdBEMatrixItem

    Methods

    Add(StdBEMatrixItem)

    Adiciona um objecto à matriz.

    Declaration
    public void Add(StdBEMatrixItem objItem)
    Parameters
    Type Name Description
    StdBEMatrixItem objItem

    Objecto a adicionar.

    Finalize()

    Declaration
    protected void Finalize()

    Find(String)

    Devolve um elemento existente na matriz.

    Declaration
    public StdBEMatrixItem Find(string strUniqueKey)
    Parameters
    Type Name Description
    System.String strUniqueKey

    Chave do elemento.

    Returns
    Type Description
    StdBEMatrixItem

    InsertObject(Object, String, Boolean, Boolean)

    Insere um objecto na matriz.

    Declaration
    public void InsertObject(object Obj, string strUniqueKey, bool bIsObjectA = false, bool bIsObjectB = false)
    Parameters
    Type Name Description
    System.Object Obj

    Objecto a adicionar.

    System.String strUniqueKey

    Chave do objecto.

    System.Boolean bIsObjectA

    Indica que o objecto deve ser adicionar na propriedade ObjectA.

    System.Boolean bIsObjectB

    Indica se o objecto deve ser adicionado na propriedade ObjectB.

    Implements

    System.Collections.IEnumerable