Nevron Open Vision Documentation
Nevron.Nov.Dom Namespace / NExpression Class / FromObject Method


In This Topic
    FromObject Method (NExpression)
    In This Topic
    Creates or gets the expressoin from an object. You can pass the following object types to this method:

    1. NExpression - returns the NExpression itself.

    2. string - returns a NFormulaFx the formala of which is the specified string.

    3. null - returns null.

    4. Any other object - throws an exception.

    Syntax
    'Declaration
     
    
    Public Shared Function FromObject( _
       ByVal obj As System.Object _
    ) As NExpression
    'Usage
     
    
    Dim obj As System.Object
    Dim value As NExpression
     
    value = NExpression.FromObject(obj)
    public static NExpression FromObject( 
       System.object obj
    )

    Parameters

    obj
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also