Itenso.Rtf.Converter.Image.RtfImageConvertSettings.GetImageFileName C# (CSharp) Method

GetImageFileName() public method

public GetImageFileName ( int index, RtfVisualImageFormat rtfVisualImageFormat ) : string
index int
rtfVisualImageFormat RtfVisualImageFormat
return string
        public string GetImageFileName( int index, RtfVisualImageFormat rtfVisualImageFormat )
        {
            string imageFileName = imageAdapter.ResolveFileName( index, rtfVisualImageFormat );
            if ( !string.IsNullOrEmpty( imagesPath ) )
            {
                imageFileName = Path.Combine( imagesPath, imageFileName );
            }
            return imageFileName;
        }