RE: PropertyGrid sees only public properties
From: PIEBALD (PIEBALD_at_discussions.microsoft.com)
Date: 02/09/05
- Next message: Rob T: "Editor Suggestions"
- Previous message: Carlos J. Quintero [.NET MVP]: "Re: Using VS 2003 with DotNetFrameWork 2.0"
- In reply to: Koen: "PropertyGrid sees only public properties"
- Next in thread: Wayne: "Re: PropertyGrid sees only public properties"
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 9 Feb 2005 07:23:07 -0800
[System.ComponentModel.CategoryAttribute("Margins"),
System.ComponentModel.ReadOnlyAttribute(true),
System.ComponentModel.Description("Margin settings.")]
public Margins Margins
{
get
{
return ( this.margins ) ;
}
set
{
this.margins.Top = value.Top ;
this.margins.Bottom = value.Bottom ;
this.margins.Left = value.Left ;
this.margins.Right = value.Right ;
this.margins.Gutter = value.Gutter ;
this.margins.MirrorMargins = value.MirrorMargins ;
}
}
- Next message: Rob T: "Editor Suggestions"
- Previous message: Carlos J. Quintero [.NET MVP]: "Re: Using VS 2003 with DotNetFrameWork 2.0"
- In reply to: Koen: "PropertyGrid sees only public properties"
- Next in thread: Wayne: "Re: PropertyGrid sees only public properties"
- Messages sorted by: [ date ] [ thread ]