Класс: slreq. Выравнивание
Пакет: slreq
Удалите элементы выравнивания
count = remove(jt, 'PropertyName', PropertyValue)
удаляет все дочерние элементы выравнивания, принадлежащие родительскому выравниванию count
= remove(jt
, 'PropertyName'
, PropertyValue
)jt
с дополнительными свойствами, заданными PropertyName
и PropertyValue
. Возвращает количество элементов, удаленных как count
.
% Load a requirement set file rs = slreq.load('C:\MATLAB\My_Requirements_Set_1.slreqx'); % Find all justification objects in the requirement set myJustifications = find(rs, 'Type', 'Justification') myJustifications = 1×10 Justification array with properties: Id Summary Description Keywords Rationale CreatedOn CreatedBy ModifiedBy SID FileRevision ModifiedOn Dirty Comments % Remove all justification objects that were created by Jane Doe count = remove(myJustifications, 'CreatedBy', 'Jane Doe') count = 5