Show / Hide Table of Contents

Class CADHostResult

Represents the CAD Host result with the active CAD object and a result state.

Inheritance
System.Object
CADHostResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: UOL.SDK
Assembly: UOL.SDK.dll
Syntax
public class CADHostResult

Properties

CADObject

Gets or sets the active CAD object that can be used in other methods.

Declaration
public object CADObject { get; set; }
Property Value
Type Description
System.Object

A System.Object representing the CAD object.

Errors

Gets or sets the error messages in a method in the CAD Host.

Declaration
public IList<string> Errors { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

The with error messages.

State

Gets or sets the result state for a method in the CAD Host.

Declaration
public CADHostResultState State { get; set; }
Property Value
Type Description
CADHostResultState

The CADHostResultState.

Methods

ToString()

Returns a string that represents the current object.

Declaration
public override string ToString()
Returns
Type Description
System.String

A string that represents the current object.

Overrides
System.Object.ToString()