0

このコードを使用して、ArcMap でテキストを作成しています。しかし、ズームインすると、注釈テキストのように拡大縮小できないようです。

誰もこれを行う方法を知っていますか?

//'First setup a color.  We'll use RGB red    
                IRgbColor pRGBcolor = new RgbColor();
                pRGBcolor.Blue = 0;
                pRGBcolor.Red = 255;
                pRGBcolor.Green = 0;

                //'Next, cocreate a new TextElement    
                ITextElement pTextElement = new TextElementClass();

                //'Query Interface (QI) to an IElement pointer and set    
                //'the geometry that was passed in    
                IElement pElement = pTextElement as IElement;
                pElement.Geometry = Point;

                //'Next, setup a font
                stdole.IFontDisp pFontDisp = new stdole.StdFont() as stdole.IFontDisp;
                pFontDisp.Name = "Arial";
                pFontDisp.Bold = true;

                //'Next, setup a TextSymbol that the TextElement will draw with    
                ITextSymbol pTextSymbol = new ESRI.ArcGIS.Display.TextSymbolClass();
                pTextSymbol.Font = pFontDisp;
                pTextSymbol.Color = pRGBcolor;
                pTextSymbol.Size = Size;
                pTextSymbol.HorizontalAlignment = esriTextHorizontalAlignment.esriTHACenter;
                pTextSymbol.VerticalAlignment = esriTextVerticalAlignment.esriTVACenter;
                pTextSymbol.Angle = Angle;
                pTextSymbol.Text = Text;

                //'set the size of the text symbol here, rather than on the font        
                //'Next, Give the TextSymbol and text string to the TextElement    
                pTextElement.Symbol = pTextSymbol;
                pTextElement.Text = pTextSymbol.Text;
                pTextElement.ScaleText = true;

                ESRI.ArcGIS.Carto.IElementProperties3 aoElementPro = pTextElement as ESRI.ArcGIS.Carto.IElementProperties3;
                aoElementPro.ReferenceScale = cGISHelpers.MapDomain.Map.MapScale;
4

3 に答える 3

1

私の知る限り、TextSymbolをマップに合わせて拡大縮小することはできません。これは、TextElementがマップの範囲に基づいて変更できないためですが、代わりに、フォントサイズを使用して、画面に表示されるサイズを決定します。

TextSymbolを使用しながらそれを行うために私が考えることができる最善の方法は、範囲の変更に応じてポイントサイズを変更することです(そして、範囲が十分に大きい場合は、要素を非表示/表示します)。あなたが本当に必要としている「範囲に注意を払うテキストコントロール」を私は知りません。

または、注釈レイヤーを使用したり、テキストサイズを変更するレイヤーにラベルを付けたりすることはできませんか?

于 2009-05-21T14:05:39.857 に答える
1

縮尺に応じてサイズが変わるテキストを追加できます。このためには、IElementProperties3.ReferenceScale プロパティを使用する必要があります。

私は C# コードを持っていませんが、変更可能なサンプル VBA コードをいくつか添付しています。

'--------------------------------
Sub ChangeTextElemRefScale()
    Dim pDoc As IMxDocument
    Dim pContainer As IGraphicsContainer
    Dim pElement As IElement
    Dim pTextElement As ITextElement
    Dim pActiveView As IActiveView

    Set pDoc = ThisDocument
    Set pActiveView = pDoc.ActiveView
    Set pContainer = pActiveView

    'Loop through the graphics container
    pContainer.Reset
    Set pElement = pContainer.Next
    While not pElement Is Nothing
        'Get the specific text element
        If TypeOf pElement Is ITextElement Then
           Set pTextElement = pElement
           If pTextElement.Text = "oregon" Then  'change this to your text element's text
                Dim pElemProp As IElementProperties3
                Set pElemProp = pTextElement
                pElemProp.ReferenceScale = 15000000
            End If
        End If
        Set pElement = pContainer.Next
    Wend

    pDoc.ActiveView.PartialRefresh esriViewGraphics, Nothing, Nothing
End Sub
'--------------------------------
于 2009-06-02T13:58:35.480 に答える
0

にはITextElementプロパティがありますITextElement.ScaleText。これをに設定するtrueと、テキストサイズが自動的に調整されます。

于 2013-02-04T12:19:39.110 に答える