MaximumSize Property
See Also 
SourceCode.Workflow.WizardFramework.Authentication Namespace > CredentialsDialog Class : MaximumSize Property



Glossary Item Box

Syntax

Visual Basic (Declaration)  
<SRDescriptionAttribute("The maximum size the form can be resized to.")>
<LocalizableAttribute(True)>
<SRCategoryAttribute("Layout")>
<RefreshPropertiesAttribute(RefreshProperties.Repaint)>
<DefaultValueAttribute()>
Public Overridable Property MaximumSize As Size
Visual Basic (Usage) Copy Code
Dim instance As CredentialsDialog
Dim value As Size
 
instance.MaximumSize = value
 
value = instance.MaximumSize
C#  
[SRDescription("The maximum size the form can be resized to.")]
[Localizable(true)]
[SRCategory("Layout")]
[RefreshProperties(RefreshProperties.Repaint)]
[DefaultValue()]
public virtual Size MaximumSize {get; set;}
C++/CLI  
[SRDescription("The maximum size the form can be resized to.")]
[Localizable(true)]
[SRCategory("Layout")]
[RefreshProperties(RefreshProperties.Repaint)]
[DefaultValue()]
public:
virtual property Size MaximumSize {
   Size get();
   void set (    Size value);
}

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also