ArcObjects Library Reference (GeoDatabase)  

IRelatedObjectEvents.RelatedObjectSetRotated Method

Notifies this object that a set of objects with relationships to the input set of objects rotated.

[Visual Basic .NET]
Public Sub RelatedObjectSetRotated ( _
    ByVal RelationshipClass As IRelationshipClass, _
    ByVal objectsThatNeedToChange As ISet, _
    ByVal objectsThatChanged As ISet, _
    ByVal Origin As IPoint, _
    ByVal Angle As Double _
)
[C#]
public void RelatedObjectSetRotated (
    IRelationshipClass RelationshipClass,
    ISet objectsThatNeedToChange,
    ISet objectsThatChanged,
    IPoint Origin,
    double Angle
);
[C++]
HRESULT RelatedObjectSetRotated(
  IRelationshipClass* RelationshipClass,
  ISet* objectsThatNeedToChange,
  ISet* objectsThatChanged,
  IPoint* Origin,
  double Angle
);
[C++]

Parameters

RelationshipClass [in]

  RelationshipClass is a parameter of type IRelationshipClass

objectsThatNeedToChange [in]

  objectsThatNeedToChange is a parameter of type ISet

objectsThatChanged [in]

  objectsThatChanged is a parameter of type ISet

Origin

  Origin is a parameter of type IPoint

Angle   Angle is a parameter of type double

Product Availability

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

Remarks

The RelatedObjectSetRotated method is called when a set of objects in the related object class has moved. Its arguments are similar to the arguments for RelatedObjectSetMoved.

See Also

IRelatedObjectEvents Interface