Construtor SimpleShape (Int32, Int32, Int32, Int32)

Inicializa uma nova instância da SimpleShape classe, especificando seu tamanho e local.

Namespace:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (em Microsoft.VisualBasic.PowerPacks.Vs.dll)

Sintaxe

'Declaração
Protected Sub New ( _
    left As Integer, _
    top As Integer, _
    width As Integer, _
    height As Integer _
)
protected SimpleShape(
    int left,
    int top,
    int width,
    int height
)
protected:
SimpleShape(
    int left, 
    int top, 
    int width, 
    int height
)
new : 
        left:int * 
        top:int * 
        width:int * 
        height:int -> SimpleShape
protected function SimpleShape(
    left : int, 
    top : int, 
    width : int, 
    height : int
)

Parâmetros

Comentários

O SimpleShape classe é a classe base para OvalShape e RectangleShape controles.Porque essa classe não é normalmente usada para criar uma instância da classe, este construtor geralmente não é chamado diretamente, mas em vez disso, é chamado por uma classe derivada.

Esta versão do SimpleShape construtor define o local e o tamanho da forma.

Segurança do .NET Framework

Consulte também

Referência

SimpleShape Classe

Sobrecargas SimpleShape

Namespace Microsoft.VisualBasic.PowerPacks

Outros recursos

Introdução à linha e controles Shape (Visual Studio)

Como: desenhar linhas com o controle de LineShape (Visual Studio)

Como: desenhar formas com os controles de RectangleShape (Visual Studio) e o OvalShape