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



Glossary Item Box

Syntax

Visual Basic (Declaration)  
<BrowsableAttribute(False)>
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
<SRDescriptionAttribute("The bounds of the control, in container coordinates.")>
<SRCategoryAttribute("Layout")>
Public Property Bounds As Rectangle
Visual Basic (Usage) Copy Code
Dim instance As CredentialsDialog
Dim value As Rectangle
 
instance.Bounds = value
 
value = instance.Bounds
C#  
[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Advanced)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
[SRDescription("The bounds of the control, in container coordinates.")]
[SRCategory("Layout")]
public Rectangle Bounds {get; set;}
C++/CLI  
[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Advanced)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
[SRDescription("The bounds of the control, in container coordinates.")]
[SRCategory("Layout")]
public:
property Rectangle Bounds {
   Rectangle get();
   void set (    Rectangle 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