Hi Karsten,
Thanks for your reply, but i tried something like this by figuring out
the approach to be taken in my code.
But the property that is coming at the design time for the control
is coming with just one text box. I want to make it something
like we get when we edit the font properties for any other
control like textbox etc through which the user can select
Font Name, Bold, Italic etc properties for my control.
Dim _sysItemFontInfo As System.Web.UI.WebControls.FontInfo
<Bindable(True), Description("Font properties of the list items."),
Category ("ListOptions"), DefaultValue("")> Property [ItemFont]() As
System.Web.UI.WebControls.FontInfo
Get
Return _sysItemFontInfo
End Get
Set(ByVal Value As System.Web.UI.WebControls.FontInfo)
_sysItemFontInfo = Value
End Set
End Property
Maybe there is some problem with my code. But i got no sample/
help related to this issue on MSDN as well as some other sites i know.
Is there anything else i need to do apart from this code?
Thanks for your reply.
Regards
Deep S.
|