IWxSelectionStyle.ConnectionPointColor

Syntax

ConnectionPointColor: IGxColor;

Description

The ConnectionPointColor property determines the color of object connection points.

Example

Executing the example requires an existing ws object of the IWxWorkspace type.

Sub UserProc;

Var

ws: IWxWorkspace;

view : IWxView;

SStyle : IWxSelectionStyle;

Begin

view := ws.CreateView;

SStyle := view.SelectionStyle;

SStyle.ConnectionPointColor := New GxColor.CreateRGB(0,128,255);

End Sub UserProc;

After executing the example the color for object connection points is set.

See also:

IWxSelectionStyle