Пример #1
0
 public IScriptableSvgLength replaceItem(IScriptableSvgLength newItem, ulong index)
 {
     object result = ((ISvgLengthList)baseObject).ReplaceItem(((ISvgLength)((ScriptableSvgLength)newItem).baseObject), (uint)index);
         return (result != null) ? (IScriptableSvgLength)ScriptableObject.CreateWrapper(result) : null;
 }
Пример #2
0
 public IScriptableSvgLength initialize(IScriptableSvgLength newItem)
 {
     object result = ((ISvgLengthList)baseObject).Initialize(((ISvgLength)((ScriptableSvgLength)newItem).baseObject));
         return (result != null) ? (IScriptableSvgLength)ScriptableObject.CreateWrapper(result) : null;
 }