This document is archived and information here might be outdated. Recommended version. |
The line symbol used by the CommandsEnvironment singleton.
[Visual Basic .NET] Public Property LineSymbol As ILineSymbol
[C#] public ILineSymbol LineSymbol {get; set;}
[C++]
HRESULT get_LineSymbol(
ILineSymbol* ppLineSymbol
);
[C++]
HRESULT put_LineSymbol(
ILineSymbol** ppLineSymbol
);
[C++] Parameters ppLineSymbol [in]
ppLineSymbol is a parameter of type ILineSymbol* ppLineSymbol [out, retval]
ppLineSymbol is a parameter of type ILineSymbol**
The LineSymbol used by the ControlsNewCurveTool, ControlsNewFreeHandTool, ControlsNewLineTool, ControlsInkGenericDrawTool, ControlsInkHighlightTool, ControlsInkPenTool and the IHookActions methods. By default the Size is 2, and the ILineSymbol::Color is black.
The ILineSymbol::Color returns a clone, so to change the default color set an IColor object into ILineSymbol::Color.
//Get the IGraphicProperties interface
IGraphicProperties graphicProperties =new
CommandsEnvironmentClass();//Get the IRgbColor interface
IRgbColor color =new
RgbColorClass();//Set the color to be red ((Red) + (Green * 256) + (Blue * 256 * 256))
color.RGB = 255;//Set the LineSymbol's color and size
graphicProperties.LineSymbol.Color = color; graphicProperties.LineSymbol.Size = 3;
'Get the IGraphicProperties interface
Dim
graphicPropertiesAs
IGraphicProperties =New
CommandsEnvironmentClass'Get the IRgbColor interface
Dim
colorAs
IRgbColor =New
RgbColorClass'Set the color to be red ((Red) + (Green * 256) + (Blue * 256 * 256))
color.RGB = 255'Set the LineSymbol's color and size
graphicProperties.LineSymbol.color = color graphicProperties.LineSymbol.Size = 3