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


IFeatureEdit.RotateSet Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IF > IFeatureEdit Interface > IFeatureEdit.RotateSet Method
ArcGIS Developer Help

IFeatureEdit.RotateSet Method

Rotates the set of features according to the specified origin and angle.

[Visual Basic .NET]
Public Sub RotateSet ( _
    ByVal features As ISet, _
    ByVal Origin As IPoint, _
    ByVal Angle As Double _
)
[C#]
public void RotateSet (
    ISet features,
    IPoint Origin,
    double Angle
);
[C++]
HRESULT RotateSet(
  ISet* features,
  IPoint* Origin,
  double Angle
);
[C++]
Parameters
features [in]

features is a parameter of type ISet* Origin [in]
Origin is a parameter of type IPoint* Angle [in]
Angle is a parameter of type double

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

All edits to features that participate in a Topology or Geometric Network must be performed within an edit session and bracketed within an edit operation.

See Also

IFeatureEdit Interface