Description
Gets or sets the per-batch pixel offset, which is applied to each marker in the batch. The array contains one x pixel offset followed by one y pixel offset.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property PixelOffset() As System.Array
|
[C#] |
---|
public System.Array PixelOffset {get; set;}
|
[Managed C++] |
---|
public: __property System::Array get_PixelOffset(); public: __property void set_PixelOffset(
System::Array
);
|
[Unmanaged C++] |
---|
public: HRESULT get_PixelOffset(
SAFEARRAY * * ppRetVal
);
public: HRESULT put_PixelOffset(
SAFEARRAY * PixelOffset
);
|
[Java] |
---|
public AgSafeArray getPixelOffset();
public void setPixelOffset(
AgSafeArray
);
|
[Python - STK API ] |
---|
@property
def PixelOffset(self) -> list:
@PixelOffset.setter
def PixelOffset(self, PixelOffset:list) -> None:
|
Remarks
See Also
Example
Shows the format of the marker batch's PixelOffset property.
[C#] |
---|
Array pixelOffset = new object[]
{
1,
2
};
markerBatch.PixelOffset = pixelOffset;
|
|
Shows the format of the marker batch's PixelOffset property.
[Visual Basic .NET] |
---|
Dim pixelOffset As Array = New Object() {1, 2}
markerBatch.PixelOffset = pixelOffset
|
|