Nevron .NET Vision
Nevron.Diagram Namespace / NModel Class / OnModelBoundsChanging Method


In This Topic
    OnModelBoundsChanging Method
    In This Topic
    Called when the model bounds of the model are about to change
    Syntax
    'Declaration
     
    
    Protected Overridable Function OnModelBoundsChanging( _
       ByVal newModelBounds As NRectangleF _
    ) As System.Boolean
    'Usage
     
    
    Dim instance As NModel
    Dim newModelBounds As NRectangleF
    Dim value As System.Boolean
     
    value = instance.OnModelBoundsChanging(newModelBounds)
    protected virtual System.bool OnModelBoundsChanging( 
       NRectangleF newModelBounds
    )

    Parameters

    newModelBounds

    Return Value

    true if the change is acceptable, otherwise false
    Remarks
    This implementation will first check whether the possible aggregate model permits the change. It will then call the OnBoundsChanging method.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also