다음을 통해 공유


SimpleShape.FillGradientStyle 속성

도형을 채우는 데 사용 되는 그라데이션 스타일을 가져오거나 설정 합니다.

네임스페이스:  Microsoft.VisualBasic.PowerPacks
어셈블리:  Microsoft.VisualBasic.PowerPacks.Vs(Microsoft.VisualBasic.PowerPacks.Vs.dll)

구문

‘선언
<BrowsableAttribute(True)> _
Public Property FillGradientStyle As FillGradientStyle
[BrowsableAttribute(true)]
public FillGradientStyle FillGradientStyle { get; set; }
[BrowsableAttribute(true)]
public:
property FillGradientStyle FillGradientStyle {
    FillGradientStyle get ();
    void set (FillGradientStyle value);
}
[<BrowsableAttribute(true)>]
member FillGradientStyle : FillGradientStyle with get, set
function get FillGradientStyle () : FillGradientStyle
function set FillGradientStyle (value : FillGradientStyle)

속성 값

형식: Microsoft.VisualBasic.PowerPacks.FillGradientStyle
A FillGradientStyle 형식 셰이프에 표시 되는 그라데이션 채우기의 방향을 결정 하는 열거형입니다.

설명

경우는 FillStyle 속성 설정 값을 이외의 Solid, 그라데이션 효과 표시 되지 것입니다.

경우는 FillGradientStyle 으로 설정 None,이 속성이 적용 되지 않습니다.

때 FillGradientStyle 으로 설정 Central, 셰이프의 가운데 색에 의해 결정 됩니다 있는 FillGradientColor.이 색으로 서서히 조화는 FillColor 외부 가장자리에 있습니다.

때 FillGradientStyle 설정 되어 Horizontal 또는 ForwardDiagonal, 색의 혼합 되는 FillColor 왼쪽에 FillGradientColor 오른쪽에.

때 FillGradientStyle 설정 되어 BackwardDiagonal, 색의 혼합 되는 FillGradientColor 왼쪽에 FillColor 오른쪽에.

때 FillGradientStyle 로 설정 됩니다 Vertical, 색의 혼합 되는 FillColor 상단에 FillGradientColor 아래에.

예제

다음 예제에서는 해당 FillGradientStyle 셰이프의 모양을 변경 하려면 속성.이 예제에서는 사용자가 있어야는 OvalShape 폼에 OvalShape1 이라는 컨트롤입니다.

Private Sub OvalShape1_Click() Handles OvalShape1.Click
    ' Set the fill style.
    OvalShape1.FillStyle = FillStyle.Solid
    ' Set the fill color.
    OvalShape1.FillColor = Color.Red
    ' Set the gradient style.
    OvalShape1.FillGradientStyle = FillGradientStyle.Central
    ' Set the gradient color.
    OvalShape1.FillGradientColor = Color.Purple
End Sub
private void ovalShape1_Click(System.Object sender, System.EventArgs e)
{
    // Set the fill style.
    ovalShape1.FillStyle = FillStyle.Solid;
    // Set the fill color.
    ovalShape1.FillColor = Color.Red;
    // Set the gradient style.
    ovalShape1.FillGradientStyle = FillGradientStyle.Central;
    // Set the gradient color.
    ovalShape1.FillGradientColor = Color.Purple;
}

.NET Framework 보안

  • 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.

참고 항목

참조

SimpleShape 클래스

Microsoft.VisualBasic.PowerPacks 네임스페이스

기타 리소스

Line 및 Shape 컨트롤 소개(Visual Studio)

방법: LineShape 컨트롤로 선 그리기(Visual Studio)

방법: OvalShape 및 RectangleShape 컨트롤을 사용하여 도형 그리기(Visual Studio)