RoundedRectanglePointColor: IGxColor;
The RoundedRectanglePointColor property determines the color of a rounded point for the selected object.
Executing the example requires that repository contains a workspace with the WSP identifier.
Add links to the Andy, Drawing, Metabase, Workspace system assemblies.
Sub UserProc;
Var
MB: IMetabase;
ws: IWxWorkspace;
view: IWxView;
SStyle: IWxSelectionStyle;
Begin
MB := MetabaseClass.Active;
// Get workspace
ws := MB.ItemById("WSP").Edit As IWxWorkspace;
view := ws.CreateView;
SStyle := view.SelectionStyle;
SStyle.RoundedRectanglePointColor := GxColor.FromName("Blue");
// Save changes
(ws As IMetabaseObject).Save;
End Sub UserProc;
After executing the example will the color of rounded points for the selected object is set.
See also: