CreateExtendedAttribute

CreateExtendedAttribute()

이 개체의 필드 ID 값과 동일한 필드 ID를 사용하여 새 확장 특성을 만듭니다.

public ExtendedAttribute CreateExtendedAttribute()

반환 값

의 생성된 인스턴스를 반환합니다.ExtendedAttribute이 개체의 fieldID 값과 동일한 fieldID가 있는 클래스입니다.

또한보십시오


CreateExtendedAttribute(string)

이 개체의 필드 ID 값 및 지정된 텍스트 값과 동일한 필드 ID를 사용하여 새 확장 특성을 만듭니다.

public ExtendedAttribute CreateExtendedAttribute(string textValue)
모수유형설명
textValueString지정된 텍스트 값입니다.

반환 값

의 생성된 인스턴스를 반환합니다.ExtendedAttribute이 개체의 fieldID 값과 동일한 fieldID가 있는 클래스입니다.

예외

예외상태
InvalidOperationException만약 현재CfType ‘텍스트’가 아닙니다.

또한보십시오


CreateExtendedAttribute(decimal)

이 개체의 필드 ID 값 및 지정된 숫자 값과 동일한 필드 ID를 사용하여 새 확장 특성을 만듭니다.

public ExtendedAttribute CreateExtendedAttribute(decimal numericValue)
모수유형설명
numericValueDecimal지정된 숫자 값입니다.

반환 값

의 생성된 인스턴스를 반환합니다.ExtendedAttribute이 개체의 fieldID 값과 동일한 fieldID가 있는 클래스입니다.

예외

예외상태
InvalidOperationException만약 현재CfType ‘숫자’ 또는 ‘비용’이 아닙니다.

또한보십시오


CreateExtendedAttribute(DateTime)

이 개체의 필드 ID 값 및 지정된 날짜 값과 동일한 필드 ID를 사용하여 새 확장 특성을 만듭니다.

public ExtendedAttribute CreateExtendedAttribute(DateTime dateTimeValue)
모수유형설명
dateTimeValueDateTime지정된 날짜 시간 값입니다.

반환 값

의 생성된 인스턴스를 반환합니다.ExtendedAttribute이 개체의 fieldID 값과 동일한 fieldID가 있는 클래스입니다.

예외

예외상태
InvalidOperationException만약 현재CfType ‘날짜’, ‘시작’ 또는 ‘마침’이 아닙니다.

또한보십시오


CreateExtendedAttribute(Duration)

이 개체의 필드 ID 값 및 지정된 기간 값과 동일한 필드 ID를 사용하여 새 확장 특성을 만듭니다.

public ExtendedAttribute CreateExtendedAttribute(Duration durationValue)
모수유형설명
durationValueDuration지정된 기간 값입니다.

반환 값

의 생성된 인스턴스를 반환합니다.ExtendedAttribute이 개체의 fieldID 값과 동일한 fieldID가 있는 클래스입니다.

예외

예외상태
InvalidOperationException만약 현재CfType ‘기간’이 아닙니다.

또한보십시오


CreateExtendedAttribute(bool)

이 개체의 필드 ID 값 및 지정된 플래그 값과 동일한 필드 ID를 사용하여 새 확장 특성을 만듭니다.

public ExtendedAttribute CreateExtendedAttribute(bool flagValue)
모수유형설명
flagValueBoolean지정된 플래그 값입니다.

반환 값

의 생성된 인스턴스를 반환합니다.ExtendedAttribute이 개체의 fieldID 값과 동일한 fieldID가 있는 클래스입니다.

예외

예외상태
InvalidOperationException만약 현재CfType ‘플래그’가 아닙니다.

또한보십시오


CreateExtendedAttribute(Value)

지정된 새 확장 속성을 생성합니다.Value 항목.

public ExtendedAttribute CreateExtendedAttribute(Value lookupValue)
모수유형설명
lookupValueValue지정된Value 안건.

반환 값

의 생성된 인스턴스를 반환합니다.ExtendedAttribute 지정된 클래스와 연결된 클래스Value 안건.

비고

lookupValue 미리 추가해야 합니다.ExtendedAttributeDefinition 사용AddLookupValue 방법.

이 코드를 사용하여 새 항목 만들기ExtendedAttribute 특정 값 사용:

taskTextAttr.AddLookupValue(value1);
taskTextAttr.AddLookupValue(value2);
var extendedAttribute = taskTextAttr.CreateExtendedAttribute(value2);

또한보십시오