TextBatchPrimitiveSetPartialCartographic Method (CentralBody, IEnumerableCartographic, IEnumerableString, TextBatchPrimitiveOptionalParameters, IEnumerableInt32) | 
  
    Namespace: 
   AGI.Foundation.Graphics
    Assembly:
   AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic void SetPartialCartographic(
	CentralBody centralBody,
	IEnumerable<Cartographic> positions,
	IEnumerable<string> text,
	TextBatchPrimitiveOptionalParameters optionalParameters,
	IEnumerable<int> indices
)
Public Sub SetPartialCartographic ( 
	centralBody As CentralBody,
	positions As IEnumerable(Of Cartographic),
	text As IEnumerable(Of String),
	optionalParameters As TextBatchPrimitiveOptionalParameters,
	indices As IEnumerable(Of Integer)
)
public:
void SetPartialCartographic(
	CentralBody^ centralBody, 
	IEnumerable<Cartographic>^ positions, 
	IEnumerable<String^>^ text, 
	TextBatchPrimitiveOptionalParameters^ optionalParameters, 
	IEnumerable<int>^ indices
)
member SetPartialCartographic : 
        centralBody : CentralBody * 
        positions : IEnumerable<Cartographic> * 
        text : IEnumerable<string> * 
        optionalParameters : TextBatchPrimitiveOptionalParameters * 
        indices : IEnumerable<int> -> unit 
Parameters
- centralBody
 - Type: AGI.Foundation.CelestialCentralBody
The central body the positions are defined on. - positions
 - Type: System.Collections.GenericIEnumerableCartographic
A collection of new positions used to update a subset of positions in the text batch. - text
 - Type: System.Collections.GenericIEnumerableString
A collection of new text used to update a subset of text in the text batch. - optionalParameters
 - Type: AGI.Foundation.GraphicsTextBatchPrimitiveOptionalParameters
Optional per-batch parameters or per-string parameters corresponding to positions.
Each per-string parameter must have the same number of elements as positions.
 - indices
 - Type: System.Collections.GenericIEnumerableInt32
        A collection of zero-based indices that map a corresponding position in
        positions to a position already in the primitive.
        For example, if a primitive is first given 5 positions with
        a call to Set, positions 1 and 3 can be modified
        with SetPartial by passing in positions containing
        two new positions and an indices collection with two
        elements, e.g. [1, 3].  The first position in positions
        will modify the position at index 1 in the primitive and the second
        will modify the position at index 3.
       
Exceptions
Remarks
See Also