Files
egwcorelib/EgwCoreLib.BlazorTest/Pages/TestPdfViewer.razor.cs
T
2024-02-22 11:57:35 +01:00

32 lines
769 B
C#

namespace EgwCoreLib.BlazorTest.Pages
{
public partial class TestPdfViewer
{
protected string FileSel
{
get => fileSel;
set
{
if (fileSel != value)
{
fileSel = value;
StateHasChanged();
}
}
}
protected string HeightSel
{
get => heightSel;
set
{
if (heightSel != value)
{
heightSel = value;
StateHasChanged();
}
}
}
private string fileSel { get; set; } = "File01.pdf";
private string heightSel { get; set; } = "400px";
}
}