Code:
        Public Property Property_Name(Parameters)

               Get
                    ' Code here
                End Get

                Set
                    ' Code here
                 End Set

          End Property
And this code

Code:
         Public WriteOnly Property Propert_Name()
                Set(Parameters)
                      ' Code Here
                End Set
         End Property
What does this code all about ? is it required ? how it will needed ?