Skip to main content
All docs
V25.1
  • .NET 8.0+

    IObjectRecordSupport.GetRecordMemberValue(ObjectRecord, String) Method

    Returns the value of the wrapped object’s member. Use this method to get this value without loading a real object.

    Namespace: DevExpress.ExpressApp

    Assembly: DevExpress.ExpressApp.v25.1.dll

    NuGet Package: DevExpress.ExpressApp

    Declaration

    object GetRecordMemberValue(
        ObjectRecord objectRecord,
        string memberName
    )

    Parameters

    Name Type Description
    objectRecord ObjectRecord

    A wrapper of a business object whose member’s value this method returns.

    memberName String

    A member whose value this method returns.

    Returns

    Type Description
    Object

    The value of the wrapped object’s member.

    Remarks

    Refer to the How to: Access Objects Selected in the Current View topic to see an example.

    See Also