Aspose.Cells.Examples.CSharp.Articles.WorkingWithHTMLFormat.FilePathProvider.GetFullName C# (CSharp) Method

GetFullName() public method

public GetFullName ( string sheetName ) : string
sheetName string
return string
        public string GetFullName(string sheetName)
        {
            if ("Sheet2".Equals(sheetName))
            {
                return @"file:///"  + "OtherSheets\\Sheet2.html";
            }
            else if ("Sheet3".Equals(sheetName))
            {
                return @"file:///"  + "OtherSheets\\Sheet3.html";
            }

            return "";
        }