8dd1e8e4b7
-sistemato singolo assemblato
26 lines
475 B
VB.net
26 lines
475 B
VB.net
Module MapV
|
|
|
|
Private m_refSplashScreenV As SplashScreenV
|
|
|
|
#Region "Get"
|
|
|
|
|
|
Public ReadOnly Property refSplashScreenV As SplashScreenV
|
|
Get
|
|
Return m_refSplashScreenV
|
|
End Get
|
|
End Property
|
|
|
|
#End Region ' Get
|
|
|
|
#Region "Set"
|
|
|
|
Friend Function SetRefSplashScreenV(SplashScreenV As SplashScreenV) As Boolean
|
|
m_refSplashScreenV = SplashScreenV
|
|
Return Not IsNothing(m_refSplashScreenV)
|
|
End Function
|
|
|
|
#End Region ' Set
|
|
|
|
End Module
|