Allows access to a Ray.
.NET Syntax
Visual Basic (Declaration) | |
---|
Public Interface IRay |
JScript | |
---|
public interface IRay |
Managed Extensions for C++ | |
---|
public __gc __interface IRay |
C++/CLI | |
---|
public interface class IRay |
Example
COM native C++
If the selected object is an IRay object, then get the object.
...
//Write number of selected objects to output file
long selCount = dsSelManager->GetSelectedObjectCount( dsSelectionSetType_Current );
strPrint.Format( L"Selected objects: (%d):\r\n", selCount );
fileOutput.WriteString( strPrint );
if( selCount > 0 )
{
for( long i = 0; i < selCount; ++i )
{
//Get selected object type
dsObjectType_e retObjType;
IDispatchPtr selObj = dsSelManager->GetSelectedObject( dsSelectionSetType_Current, i, &retObjType );
//If selected object is an Ray entity
if(dsRayType == retObjType )
{
IRayPtr dsRay( selObj );
strPrint.Format( L"Ray\r\n" );
fileOutput.WriteString( strPrint );
//Do dump for Ray entity
...
Example
Accessors
Access Diagram
See Also