Re: Lines() like property
From: Josip Medved (jmedved_at_jmedved.com)
Date: 04/16/04
- Next message: Muhammad Ali via .NET 247: "Getting window.parent.frames(0).document on windows.forms.control in IE"
- Previous message: Tim Wilson: "Re: DropDown"
- In reply to: Herfried K. Wagner [MVP]: "Re: Lines() like property"
- Next in thread: Herfried K. Wagner [MVP]: "Re: Lines() like property"
- Reply: Herfried K. Wagner [MVP]: "Re: Lines() like property"
- Messages sorted by: [ date ] [ thread ]
Date: Fri, 16 Apr 2004 08:32:13 +0200
> > How to create property that can be edited in Properties
> > windows similar to Lines() property of TextBox.
> > In short: I want multiline property that is visible during
> > design time.
> \\\
> Private m_Lines() As String
>
> Public Property Lines() As String()
> Get
> Return m_Lines
> End Get
> Set(ByVal Value As String())
> m_Lines = Value
> End Set
> End Property
> ///
I tried that but that doesn't show in design properties... I can only edit
it at runtime...
-- Pozdrav, Josip Medved, MCP http://www.jmedved.com
- Next message: Muhammad Ali via .NET 247: "Getting window.parent.frames(0).document on windows.forms.control in IE"
- Previous message: Tim Wilson: "Re: DropDown"
- In reply to: Herfried K. Wagner [MVP]: "Re: Lines() like property"
- Next in thread: Herfried K. Wagner [MVP]: "Re: Lines() like property"
- Reply: Herfried K. Wagner [MVP]: "Re: Lines() like property"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|