GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoObject Class / GetShadowOffset Method
In This Topic
    GetShadowOffset Method
    In This Topic
    Gets the size of a drop shadow for this object in the given view.
    Syntax
    public virtual SizeF GetShadowOffset( 
       GoView view
    )

    Parameters

    view

    Return Value

    A SizeF value that specifies the X and Y offset from the object's position. A positive value for X places the drop shadow toward the right; a positive value for Y places it toward the bottom. Normally this value has small positive values for both Width (X) and Height (Y), resulting in a shadow that corresponds to a light source coming from the top left of the view.
    Remarks
    By default this just returns view.ShadowOffset. You can override this to customize the size of ths drop shadow for this kind of object.
    See Also