Advertisement
Guest User

Untitled

a guest
Mar 19th, 2017
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.58 KB | None | 0 0
  1.  
  2.     <Browsable(True)>
  3.     <EditorBrowsable(EditorBrowsableState.Always)>
  4.     <DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)>
  5.     <Localizable(True)>
  6.     <Category("Appearance")>
  7.     <Description("The font of the text displayed by the control.")>
  8.     <DefaultValue(GetType(Font), "Microsoft Sans Serif, 8.25")>
  9.     Public Overrides Property Font As Font
  10.         Get
  11.             Return MyBase.Font
  12.         End Get
  13.         Set(ByVal value As Font)
  14.             MyBase.Font = value
  15.             Me.textboxB.Font = value
  16.         End Set
  17.     End Property
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement