The CreateTextLookupTable method displays text object coordinates in a report.
Syntax
object.CreateTextLookupTable( Units, AllLayers, VisTextOnly, QuoteText, SplitCoords )
Parameter |
Type |
Description |
Units |
optional; coordinates for output |
|
AllLayers |
Boolean |
optional; true to include all layers |
VisTextOnly |
Boolean |
optional; true to include visible text only |
QuoteText |
Boolean |
optional; true to include text strings in quotes |
SplitCoords |
Boolean |
optional; true to include coordinates in two columns rather than in one column |
Example
'CreateTextLookupTable
'Create a base map layer of California and assign it to the variable "BaseMap"
Set BaseMap = Plot.CreateBaseMap(FileName:=mvApp.ModuleFolder + "\Samples\CA2010.gsb")
'Show the PIDs on the base map by selecting everything and applying the PID
BaseMap.Shapes.SelectAll
BaseMap.Selection.IDPositionAndVisibility(ApplyPIDPosition:=True, ApplyPIDVisibility:=True, ShowPID:=True)
'Show a report for the basic labels in the plot
Plot.CreateTextLookupTable()
Used by: PlotDocument object