GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoSimpleNode Class / Initialize Method / Initialize(ResourceManager,String,String) Method
Provides the ResourceManager holding an Image resource named by iconname. If this parameter is null, DefaultResourceManager is used instead.

The name of the Image resource in the ResourceManager given by res, or else a file name if no resource manager can be used (i.e., when both res is null and DefaultResourceManager is null).

If the value is an empty string, the Image will be blank; you can set Image.Name to show or change the image displayed by the GoImage that is the Image.

If the value is null, the Icon is not a GoImage but a GoDrawing; you can then set the Figure to change the shape shown as the icon.

The initial string value for the Label. If this value is null, no label is created for this node.
In This Topic
    Initialize(ResourceManager,String,String) Method
    In This Topic
    Initialize an empty GoSimpleNode to have an icon, a label, and two ports.
    Syntax
    public virtual void Initialize( 
       ResourceManager res,
       string iconname,
       string name
    )

    Parameters

    res
    Provides the ResourceManager holding an Image resource named by iconname. If this parameter is null, DefaultResourceManager is used instead.
    iconname

    The name of the Image resource in the ResourceManager given by res, or else a file name if no resource manager can be used (i.e., when both res is null and DefaultResourceManager is null).

    If the value is an empty string, the Image will be blank; you can set Image.Name to show or change the image displayed by the GoImage that is the Image.

    If the value is null, the Icon is not a GoImage but a GoDrawing; you can then set the Figure to change the shape shown as the icon.

    name
    The initial string value for the Label. If this value is null, no label is created for this node.
    See Also