Private: MY Note

Every thing you imagine, study it – know it – use it

WriteOnly Property

Private im As Image   
Private imPath As String
Public WriteOnly Property ImageFormPath() As String
        Set(ByVal value As String)
            im = Image.FromFile(value)
        End Set
End Property
Public WriteOnly Property Images() As Image
        Set(ByVal value As Image)
            im = value
        End Set
End Property

April 15, 2007 Posted by dev1 | OOP | | No Comments Yet

See OOP Category in Private Sectoin

See OOP Category in Private Sectoin

April 13, 2007 Posted by dev1 | OOP | | No Comments Yet