Nevron Open Vision Documentation
Nevron.Nov.Graphics Namespace / NImage Class / FromFileLinked Method
The full file path to the image file.


In This Topic
    FromFileLinked Method
    In This Topic
    Creates an image from the file with the given full file path. The image is linked to that file, which means that the image depends on the file. If the file gets changed, the image will be updated, but if the file is deleted the image won't work properly anymore.
    Syntax
    'Declaration
     
    
    Public Shared Function FromFileLinked( _
       ByVal fileName As System.String _
    ) As NImage
    'Usage
     
    
    Dim fileName As System.String
    Dim value As NImage
     
    value = NImage.FromFileLinked(fileName)
    public static NImage FromFileLinked( 
       System.string fileName
    )

    Parameters

    fileName
    The full file path to the image file.
    Remarks
    Note that full file paths are not available on some platforms (e.g. WebAssembly and Mac).
    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