July 2010
M T W T F S S
« Jun    
 1234
567891011
12131415161718
19202122232425
262728293031  

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

See OOP Category in Private Sectoin

See OOP Category in Private Sectoin