Shape.Created Property
Gets a value indicating whether a line or shape control has been created.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property Created As Boolean
Get
[BrowsableAttribute(false)]
public bool Created { get; }
[BrowsableAttribute(false)]
public:
property bool Created {
bool get ();
}
[<BrowsableAttribute(false)>]
member Created : bool
function get Created () : boolean
Property Value
Type: System.Boolean
true if the control has been created; otherwise, false.
Remarks
The Created property returns true if the control was successfully created even though the control's handle might not have been created or re-created yet.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualBasic.PowerPacks Namespace
Other Resources
How to: Draw Lines with the LineShape Control (Visual Studio)
How to: Draw Shapes with the OvalShape and RectangleShape Controls (Visual Studio)