LDicomDS::SetShortValue

Summary

Sets the short value(s) of a Data Element.

Syntax

#include "Ltdic.h"

L_BOOL LDicomDS::SetShortValue(pElement, pValue, nCount)

Parameters

pDICOMELEMENT pElement

Pointer to a DICOMELEMENT structure within the Data Set.

L_INT16 * pValue

Pointer to a short that contains the short value(s) to set. If you want to set multiple values in the Value Field, put all short values in pValue and set nCount to the appropriate number of values.

L_UINT32 nCount

Value that indicates the number of values to set in the Value Field. If you want to set multiple values in the Value Field, put all the short values in pValue and set nCount to the appropriate number.

Returns

Value Meaning
TRUE The short value(s) were set successfully.
FALSE Could not set the short value(s) of the Data Element.

Comments

NOTE: You must allocate the memory for pValue.

If you want to set more than one value in the Value Field of the Data Element, put all the short values in an array of short values, set pValue to the address of the array, and set nCount to the corresponding number of entries. For example, if you wish to set three short values in the Value Field of the Data Element, create an array of shorts containing the three short values, set pValue to the address of the array, and set nCount to three.

If more than one value is stored in the Value Field of the Data Element, you must set all values at the same time.

This function can be called only if the Value Representation of the Data Element is VR_OW, VR_SS, or VR_US. For more information about Value Representations, refer to Default Value Representation Table.

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

For an example, refer to LDicomDS::SetCharValue.

Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.