This document is archived and information here might be outdated.  Recommended version.


IBitwiseOp.LeftShift Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > SpatialAnalyst > ESRI.ArcGIS.SpatialAnalyst > Interfaces > IB > IBitwiseOp Interface > IBitwiseOp.LeftShift Method
ArcGIS Developer Help

IBitwiseOp.LeftShift Method

Performs a bitwise 'left shift' operation on the binary value of two input GeoDatasets.

[Visual Basic .NET]
Public Function LeftShift ( _
    ByVal geoDataset1 As IGeoDataset, _
    ByVal geoDataset2 As IGeoDataset _
) As IGeoDataset
[C#]
public IGeoDataset LeftShift (
    IGeoDataset geoDataset1,
    IGeoDataset geoDataset2
);
[C++]
HRESULT LeftShift(
  IGeoDataset* geoDataset1,
  IGeoDataset* geoDataset2
);
[C++]
Parameters
geoDataset1 [in]

geoDataset1 is a parameter of type IGeoDataset* geoDataset2 [in]
geoDataset2 is a parameter of type IGeoDataset*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Spatial Analyst Extension.

Remarks

geoDataset1

the first input Raster, RasterDataset, RasterBand, or RasterDescriptor to perform the shift on

geoDataset2

the second input Raster, RasterDataset, RasterBand, or RasterDescriptordefining the number of positions to shift the bits

 

See Also

IBitwiseOp Interface