20 lines
351 B
C#
20 lines
351 B
C#
using SteamWare;
|
|
|
|
namespace GMW.WebUserControls
|
|
{
|
|
public partial class mod_GestMatrUser : ApplicationUserControl
|
|
{
|
|
|
|
public int pageSize
|
|
{
|
|
get
|
|
{
|
|
return grView.PageSize;
|
|
}
|
|
set
|
|
{
|
|
grView.PageSize = value;
|
|
}
|
|
}
|
|
}
|
|
} |