GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoSelection Class / GoSelection Constructor
if the view is not null/Nothing, this will automatically create selection handles for document objects as they are Add'ed to this collection
In This Topic
    GoSelection Constructor
    In This Topic
    Create an empty collection of objects representing the user's selection for a view.
    Syntax
    public GoSelection( 
       GoView view
    )

    Parameters

    view
    if the view is not null/Nothing, this will automatically create selection handles for document objects as they are Add'ed to this collection
    Remarks
    The only normal use of this constructor with a non-null argument should be by GoView.GoView.CreateSelection. If you do create a GoSelection with a non-null view that is not the value of that view's GoView.GoView.Selection, you need to be responsible for maintaining the selection handles in the view. For example, a change in the bounds of an object will not automatically update the handles that are in any GoSelection but the one that is the GoView.GoView.Selection.
    See Also