Below is the example of using the GetDimElements operation to select elements and to get basic information about these elements. The request contains moniker of opened dictionary instance. The response contains basic information about the elements that includes element's key, name, level and availability of child elements, as well as summary information about elements selection.
{
"GetDimElements" :
{
"tDim" :
{
"id" : "S1!M!S!S1"
},
"tArg" :
{
"selectionInfo" : "true",
"changeSelection" :
{
"elSelectOp" : "Select",
"elRelative" : "All",
"limitElements" : "true"
}
}
}
}
{
"GetDimElementsResult" :
{
"els" :
{
"e" :
[
{
"n" : "First element",
"k" : "1",
"h" : "0",
"o" : "0"
},
{
"n" : "Second element",
"k" : "2",
"h" : "0",
"o" : "1"
},
{
"n" : "Third element",
"k" : "3",
"h" : "0",
"o" : "2"
},
{
"n" : "Fourth element",
"k" : "4",
"h" : "0",
"o" : "0"
},
{
"n" : "Fifth element",
"k" : "5",
"h" : "0",
"o" : "0"
}
]
},
"id" :
{
"id" : "S1!M!S!S1"
},
"selectionInfo" :
{
"firstSelected" :
{
"n" : "First element",
"k" : "1",
"h" : "0",
"o" : "0"
},
"lastSelected" :
{
"n" : "Fifth element",
"k" : "5",
"h" : "0",
"o" : "0"
},
"selectedCount" : "5",
"schema" :
{
"k" : "4294967295",
"vis" : "1",
"applyOnlyOnce" : "0",
"onceApplied" : "0",
"applyOnRebuild" : "0"
}
}
}
}
public static GetDimElementsResult SelectElementsBeforeGet(DmId moniker)
{
var somClient = new SomPortTypeClient(); //Proxy object for operation execution
//Operation execution parameters
var tElements = new GetDimElements()
{
tArg = new GetDimElementsArg()
{
//Selection parameters
changeSelection = new DmSelectionArg()
{
elSelectOp = DmElSelectOp.Select,
elRelative = DmElRelative.All,
limitElements = true
},
selectionInfo = true
},
tDim = moniker
};
//Get information about dictionary elements
var result = somClient.GetDimElements(tElements);
return result;
}
See also: