Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / February 2008

Tip: Looking for answers? Try searching our database.

Property default value

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
shapper - 28 Feb 2008 16:28 GMT
Hello,

I have two properties in a custom control. One is of a boolean type
and the other is an enum type.

How can I define a default value when they are not defined?

Here is my code:

   Private _AutoPostBackOnSelect As Boolean
   Public Property AutoPostBackOnSelect() As Boolean
     Get
       Return _AutoPostBackOnSelect
     End Get
     Set(ByVal value As Boolean)
       _AutoPostBackOnSelect = value
     End Set
   End Property ' AutoPostBackOnSelect

   Private _Type As WebMenuItemType
   Public Property Type() As WebMenuItemType
     Get
       Return _Type
     End Get
     Set(ByVal value As WebMenuItemType)
       _Type = value
     End Set
   End Property ' Type

Thanks,
Miguel
Peter Bucher [MVP] - 28 Feb 2008 17:41 GMT
Hi shapper

> I have two properties in a custom control. One is of a boolean type
> and the other is an enum type.
>
> How can I define a default value when they are not defined?
With Attributes.
->
http://www.google.ch/search?hl=de&q=property+default+value+attribute+vb.net&meta=

Signature

Gruss, Peter Bucher
Microsoft MVP - Visual Developer ASP / ASP.NET, Switzerland
http://www.aspnetzone.de/ - ASP.NET Zone, die ASP.NET Community
http://www.aspnetzone.de/blogs/peterbucher/ - Auf den Spuren von .NET
http://www.peterbucher.ch/ - Meine Persönliche Seite


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.