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

[BrowsableAttribute(false)]
public bool Created { get; }
public:
[BrowsableAttribute(false)]
property bool Created {
    bool get();
}
[<BrowsableAttribute(false)>]
member Created : bool with get
<BrowsableAttribute(False)>
Public ReadOnly Property Created As 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.

See Also

Shape Class
Microsoft.VisualBasic.PowerPacks Namespace
How to: Draw Lines with the LineShape Control (Visual Studio)
How to: Draw Shapes with the OvalShape and RectangleShape Controls (Visual Studio)
Introduction to the Line and Shape Controls (Visual Studio)

Return to top