Beispiel #1
0
 public long getCharNumAtPosition(IJsSvgPoint point)
 {
     return(((ISvgTextContentElement)_baseObject).GetCharNumAtPosition(point.BaseObject));
 }
Beispiel #2
0
        public IJsSvgPoint appendItem(IJsSvgPoint newItem)
        {
            var wrappedValue = _baseObject.AppendItem(newItem.BaseObject);

            return((wrappedValue != null) ? CreateWrapper <IJsSvgPoint>(wrappedValue, _engine) : null);
        }
Beispiel #3
0
        public IJsSvgPoint insertItemBefore(IJsSvgPoint newItem, ulong index)
        {
            var wrappedValue = _baseObject.InsertItemBefore(newItem.BaseObject, (uint)index);

            return((wrappedValue != null) ? CreateWrapper <IJsSvgPoint>(wrappedValue, _engine) : null);
        }
Beispiel #4
0
        public IJsSvgPoint replaceItem(IJsSvgPoint newItem, ulong index)
        {
            var wrappedValue = _baseObject.ReplaceItem(newItem.BaseObject, (uint)index);

            return((wrappedValue != null) ? CreateWrapper <IJsSvgPoint>(wrappedValue, _engine) : null);
        }
Beispiel #5
0
        public IJsSvgPoint initialize(IJsSvgPoint newItem)
        {
            var wrappedValue = _baseObject.Initialize(newItem.BaseObject);

            return((wrappedValue != null) ? CreateWrapper <IJsSvgPoint>(wrappedValue, _engine) : null);
        }