@nodert-win10-21h1/windows.ui.xaml.documents
Version:
Use the Windows.UI.Xaml.Documents UWP API directly from Node.js
1,412 lines (1,250 loc) • 85 kB
JavaScript
FontWeight = (function () {
var cls = function FontWeight() {
this.weight = new Number();
};
return cls;
}) ();
exports.FontWeight = FontWeight;
Thickness = (function () {
var cls = function Thickness() {
};
return cls;
}) ();
exports.Thickness = Thickness;
Point = (function () {
var cls = function Point() {
};
return cls;
}) ();
exports.Point = Point;
Size = (function () {
var cls = function Size() {
};
return cls;
}) ();
exports.Size = Size;
Vector3 = (function () {
var cls = function Vector3() {
this.x = new Number();
this.y = new Number();
this.z = new Number();
};
return cls;
}) ();
exports.Vector3 = Vector3;
Vector2 = (function () {
var cls = function Vector2() {
this.x = new Number();
this.y = new Number();
};
return cls;
}) ();
exports.Vector2 = Vector2;
Matrix4x4 = (function () {
var cls = function Matrix4x4() {
this.m11 = new Number();
this.m12 = new Number();
this.m13 = new Number();
this.m14 = new Number();
this.m21 = new Number();
this.m22 = new Number();
this.m23 = new Number();
this.m24 = new Number();
this.m31 = new Number();
this.m32 = new Number();
this.m33 = new Number();
this.m34 = new Number();
this.m41 = new Number();
this.m42 = new Number();
this.m43 = new Number();
this.m44 = new Number();
};
return cls;
}) ();
exports.Matrix4x4 = Matrix4x4;
Rect = (function () {
var cls = function Rect() {
};
return cls;
}) ();
exports.Rect = Rect;
TextRange = (function () {
var cls = function TextRange() {
this.startIndex = new Number();
this.length = new Number();
};
return cls;
}) ();
exports.TextRange = TextRange;
_LogicalDirection = function () {
this.backward = 0;
this.forward = 1;
}
exports.LogicalDirection = new _LogicalDirection();
_UnderlineStyle = function () {
this.none = 0;
this.single = 1;
}
exports.UnderlineStyle = new _UnderlineStyle();
TextElement = (function () {
var cls = function TextElement() {
this.language = new String();
this.foreground = new Object();
this.fontWeight = new FontWeight();
this.fontStyle = new Number();
this.fontStretch = new Number();
this.fontSize = new Number();
this.fontFamily = new Object();
this.characterSpacing = new Number();
this.contentEnd = new TextPointer();
this.contentStart = new TextPointer();
this.elementEnd = new TextPointer();
this.elementStart = new TextPointer();
this.name = new String();
this.isTextScaleFactorEnabled = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.accessKey = new String();
this.textDecorations = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.keyTipHorizontalOffset = new Number();
this.isAccessKeyScope = new Boolean();
this.accessKeyScopeOwner = new Object();
this.xamlRoot = new Object();
this.dispatcher = new Object();
};
cls.prototype.findName = function findName(name) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="name" type="String">A param.</param>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.onDisconnectVisualChildren = function onDisconnectVisualChildren() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.characterSpacingProperty = new Object();
cls.fontFamilyProperty = new Object();
cls.fontSizeProperty = new Object();
cls.fontStretchProperty = new Object();
cls.fontStyleProperty = new Object();
cls.fontWeightProperty = new Object();
cls.foregroundProperty = new Object();
cls.languageProperty = new Object();
cls.isTextScaleFactorEnabledProperty = new Object();
cls.accessKeyProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.textDecorationsProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.TextElement = TextElement;
Block = (function () {
var cls = function Block() {
this.textAlignment = new Number();
this.margin = new Thickness();
this.lineStackingStrategy = new Number();
this.lineHeight = new Number();
this.horizontalTextAlignment = new Number();
this.language = new String();
this.foreground = new Object();
this.fontWeight = new FontWeight();
this.fontStyle = new Number();
this.fontStretch = new Number();
this.fontSize = new Number();
this.fontFamily = new Object();
this.characterSpacing = new Number();
this.contentEnd = new TextPointer();
this.contentStart = new TextPointer();
this.elementEnd = new TextPointer();
this.elementStart = new TextPointer();
this.name = new String();
this.isTextScaleFactorEnabled = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.accessKey = new String();
this.textDecorations = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.keyTipHorizontalOffset = new Number();
this.isAccessKeyScope = new Boolean();
this.accessKeyScopeOwner = new Object();
this.xamlRoot = new Object();
this.dispatcher = new Object();
};
cls.lineHeightProperty = new Object();
cls.lineStackingStrategyProperty = new Object();
cls.marginProperty = new Object();
cls.textAlignmentProperty = new Object();
cls.horizontalTextAlignmentProperty = new Object();
cls.characterSpacingProperty = new Object();
cls.fontFamilyProperty = new Object();
cls.fontSizeProperty = new Object();
cls.fontStretchProperty = new Object();
cls.fontStyleProperty = new Object();
cls.fontWeightProperty = new Object();
cls.foregroundProperty = new Object();
cls.languageProperty = new Object();
cls.isTextScaleFactorEnabledProperty = new Object();
cls.accessKeyProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.textDecorationsProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.Block = Block;
BlockCollection = (function () {
var cls = function BlockCollection() {
};
cls.prototype.getAt = function getAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Block" />
/// </signature>
return new Block();
}
cls.prototype.getView = function getView() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.indexOf = function indexOf(value, index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="Block">A param.</param>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.prototype.setAt = function setAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="Block">A param.</param>
/// </signature>
}
cls.prototype.insertAt = function insertAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="Block">A param.</param>
/// </signature>
}
cls.prototype.removeAt = function removeAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// </signature>
}
cls.prototype.append = function append(value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="Block">A param.</param>
/// </signature>
}
cls.prototype.removeAtEnd = function removeAtEnd() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.clear = function clear() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.getMany = function () {
}
cls.prototype.replaceAll = function replaceAll(items) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="items" type="Array<Object>">A param.</param>
/// </signature>
}
cls.prototype.first = function first() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.BlockCollection = BlockCollection;
Inline = (function () {
var cls = function Inline() {
this.language = new String();
this.foreground = new Object();
this.fontWeight = new FontWeight();
this.fontStyle = new Number();
this.fontStretch = new Number();
this.fontSize = new Number();
this.fontFamily = new Object();
this.characterSpacing = new Number();
this.contentEnd = new TextPointer();
this.contentStart = new TextPointer();
this.elementEnd = new TextPointer();
this.elementStart = new TextPointer();
this.name = new String();
this.isTextScaleFactorEnabled = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.accessKey = new String();
this.textDecorations = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.keyTipHorizontalOffset = new Number();
this.isAccessKeyScope = new Boolean();
this.accessKeyScopeOwner = new Object();
this.xamlRoot = new Object();
this.dispatcher = new Object();
};
cls.characterSpacingProperty = new Object();
cls.fontFamilyProperty = new Object();
cls.fontSizeProperty = new Object();
cls.fontStretchProperty = new Object();
cls.fontStyleProperty = new Object();
cls.fontWeightProperty = new Object();
cls.foregroundProperty = new Object();
cls.languageProperty = new Object();
cls.isTextScaleFactorEnabledProperty = new Object();
cls.accessKeyProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.textDecorationsProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.Inline = Inline;
Span = (function () {
var cls = function Span() {
this.inlines = new InlineCollection();
this.language = new String();
this.foreground = new Object();
this.fontWeight = new FontWeight();
this.fontStyle = new Number();
this.fontStretch = new Number();
this.fontSize = new Number();
this.fontFamily = new Object();
this.characterSpacing = new Number();
this.contentEnd = new TextPointer();
this.contentStart = new TextPointer();
this.elementEnd = new TextPointer();
this.elementStart = new TextPointer();
this.name = new String();
this.isTextScaleFactorEnabled = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.accessKey = new String();
this.textDecorations = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.keyTipHorizontalOffset = new Number();
this.isAccessKeyScope = new Boolean();
this.accessKeyScopeOwner = new Object();
this.xamlRoot = new Object();
this.dispatcher = new Object();
};
cls.characterSpacingProperty = new Object();
cls.fontFamilyProperty = new Object();
cls.fontSizeProperty = new Object();
cls.fontStretchProperty = new Object();
cls.fontStyleProperty = new Object();
cls.fontWeightProperty = new Object();
cls.foregroundProperty = new Object();
cls.languageProperty = new Object();
cls.isTextScaleFactorEnabledProperty = new Object();
cls.accessKeyProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.textDecorationsProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.Span = Span;
Bold = (function () {
var cls = function Bold() {
this.inlines = new InlineCollection();
this.language = new String();
this.foreground = new Object();
this.fontWeight = new FontWeight();
this.fontStyle = new Number();
this.fontStretch = new Number();
this.fontSize = new Number();
this.fontFamily = new Object();
this.characterSpacing = new Number();
this.contentEnd = new TextPointer();
this.contentStart = new TextPointer();
this.elementEnd = new TextPointer();
this.elementStart = new TextPointer();
this.name = new String();
this.isTextScaleFactorEnabled = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.accessKey = new String();
this.textDecorations = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.keyTipHorizontalOffset = new Number();
this.isAccessKeyScope = new Boolean();
this.accessKeyScopeOwner = new Object();
this.xamlRoot = new Object();
this.dispatcher = new Object();
};
cls.characterSpacingProperty = new Object();
cls.fontFamilyProperty = new Object();
cls.fontSizeProperty = new Object();
cls.fontStretchProperty = new Object();
cls.fontStyleProperty = new Object();
cls.fontWeightProperty = new Object();
cls.foregroundProperty = new Object();
cls.languageProperty = new Object();
cls.isTextScaleFactorEnabledProperty = new Object();
cls.accessKeyProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.textDecorationsProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.Bold = Bold;
ContentLinkProvider = (function () {
var cls = function ContentLinkProvider() {
this.dispatcher = new Object();
};
return cls;
}) ();
exports.ContentLinkProvider = ContentLinkProvider;
ContactContentLinkProvider = (function () {
var cls = function ContactContentLinkProvider() {
this.dispatcher = new Object();
};
return cls;
}) ();
exports.ContactContentLinkProvider = ContactContentLinkProvider;
ContentLink = (function () {
var cls = function ContentLink() {
this.xYFocusUpNavigationStrategy = new Number();
this.xYFocusUp = new Object();
this.xYFocusRightNavigationStrategy = new Number();
this.xYFocusRight = new Object();
this.xYFocusLeftNavigationStrategy = new Number();
this.xYFocusLeft = new Object();
this.xYFocusDownNavigationStrategy = new Number();
this.xYFocusDown = new Object();
this.tabIndex = new Number();
this.isTabStop = new Boolean();
this.info = new Object();
this.elementSoundMode = new Number();
this.cursor = new Number();
this.background = new Object();
this.focusState = new Number();
this.language = new String();
this.foreground = new Object();
this.fontWeight = new FontWeight();
this.fontStyle = new Number();
this.fontStretch = new Number();
this.fontSize = new Number();
this.fontFamily = new Object();
this.characterSpacing = new Number();
this.contentEnd = new TextPointer();
this.contentStart = new TextPointer();
this.elementEnd = new TextPointer();
this.elementStart = new TextPointer();
this.name = new String();
this.isTextScaleFactorEnabled = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.accessKey = new String();
this.textDecorations = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.keyTipHorizontalOffset = new Number();
this.isAccessKeyScope = new Boolean();
this.accessKeyScopeOwner = new Object();
this.xamlRoot = new Object();
this.dispatcher = new Object();
};
cls.prototype.focus = function focus(value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="Number">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.backgroundProperty = new Object();
cls.cursorProperty = new Object();
cls.elementSoundModeProperty = new Object();
cls.focusStateProperty = new Object();
cls.isTabStopProperty = new Object();
cls.tabIndexProperty = new Object();
cls.xYFocusDownNavigationStrategyProperty = new Object();
cls.xYFocusDownProperty = new Object();
cls.xYFocusLeftNavigationStrategyProperty = new Object();
cls.xYFocusLeftProperty = new Object();
cls.xYFocusRightNavigationStrategyProperty = new Object();
cls.xYFocusRightProperty = new Object();
cls.xYFocusUpNavigationStrategyProperty = new Object();
cls.xYFocusUpProperty = new Object();
cls.characterSpacingProperty = new Object();
cls.fontFamilyProperty = new Object();
cls.fontSizeProperty = new Object();
cls.fontStretchProperty = new Object();
cls.fontStyleProperty = new Object();
cls.fontWeightProperty = new Object();
cls.foregroundProperty = new Object();
cls.languageProperty = new Object();
cls.isTextScaleFactorEnabledProperty = new Object();
cls.accessKeyProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.textDecorationsProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.ContentLink = ContentLink;
ContentLinkInvokedEventArgs = (function () {
var cls = function ContentLinkInvokedEventArgs() {
this.handled = new Boolean();
this.contentLinkInfo = new Object();
};
return cls;
}) ();
exports.ContentLinkInvokedEventArgs = ContentLinkInvokedEventArgs;
ContentLinkProviderCollection = (function () {
var cls = function ContentLinkProviderCollection() {
};
cls.prototype.getAt = function getAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <returns type="ContentLinkProvider" />
/// </signature>
return new ContentLinkProvider();
}
cls.prototype.getView = function getView() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.indexOf = function indexOf(value, index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="ContentLinkProvider">A param.</param>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.prototype.setAt = function setAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="ContentLinkProvider">A param.</param>
/// </signature>
}
cls.prototype.insertAt = function insertAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="ContentLinkProvider">A param.</param>
/// </signature>
}
cls.prototype.removeAt = function removeAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// </signature>
}
cls.prototype.append = function append(value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="ContentLinkProvider">A param.</param>
/// </signature>
}
cls.prototype.removeAtEnd = function removeAtEnd() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.clear = function clear() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.getMany = function () {
}
cls.prototype.replaceAll = function replaceAll(items) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="items" type="Array<Object>">A param.</param>
/// </signature>
}
cls.prototype.first = function first() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.ContentLinkProviderCollection = ContentLinkProviderCollection;
Glyphs = (function () {
var cls = function Glyphs() {
this.unicodeString = new String();
this.styleSimulations = new Number();
this.originY = new Number();
this.originX = new Number();
this.indices = new String();
this.fontUri = new Object();
this.fontRenderingEmSize = new Number();
this.fill = new Object();
this.isColorFontEnabled = new Boolean();
this.colorFontPaletteIndex = new Number();
this.width = new Number();
this.verticalAlignment = new Number();
this.tag = new Object();
this.style = new Object();
this.resources = new Object();
this.name = new String();
this.minWidth = new Number();
this.minHeight = new Number();
this.maxWidth = new Number();
this.maxHeight = new Number();
this.margin = new Thickness();
this.language = new String();
this.horizontalAlignment = new Number();
this.height = new Number();
this.flowDirection = new Number();
this.dataContext = new Object();
this.actualHeight = new Number();
this.actualWidth = new Number();
this.baseUri = new Object();
this.parent = new Object();
this.triggers = new Object();
this.requestedTheme = new Number();
this.focusVisualSecondaryThickness = new Thickness();
this.focusVisualSecondaryBrush = new Object();
this.focusVisualPrimaryThickness = new Thickness();
this.focusVisualPrimaryBrush = new Object();
this.focusVisualMargin = new Thickness();
this.allowFocusWhenDisabled = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.actualTheme = new Number();
this.isLoaded = new Boolean();
this.transitions = new Object();
this.projection = new Object();
this.renderTransformOrigin = new Object();
this.opacity = new Number();
this.manipulationMode = new Number();
this.isTapEnabled = new Boolean();
this.isRightTapEnabled = new Boolean();
this.isHoldingEnabled = new Boolean();
this.isHitTestVisible = new Boolean();
this.isDoubleTapEnabled = new Boolean();
this.allowDrop = new Boolean();
this.clip = new Object();
this.cacheMode = new Object();
this.useLayoutRounding = new Boolean();
this.renderTransform = new Object();
this.visibility = new Number();
this.desiredSize = new Object();
this.pointerCaptures = new Object();
this.renderSize = new Object();
this.xamlRoot = new Object();
this.shadow = new Object();
this.actualOffset = new Vector3();
this.actualSize = new Vector2();
this.uIContext = new Object();
this.compositeMode = new Number();
this.transform3D = new Object();
this.canDrag = new Boolean();
this.isAccessKeyScope = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.contextFlyout = new Object();
this.accessKeyScopeOwner = new Object();
this.accessKey = new String();
this.keyTipHorizontalOffset = new Number();
this.highContrastAdjustment = new Number();
this.xYFocusRightNavigationStrategy = new Number();
this.xYFocusKeyboardNavigation = new Number();
this.xYFocusDownNavigationStrategy = new Number();
this.tabFocusNavigation = new Number();
this.keyTipVerticalOffset = new Number();
this.xYFocusUpNavigationStrategy = new Number();
this.keyTipPlacementMode = new Number();
this.xYFocusLeftNavigationStrategy = new Number();
this.lights = new Object();
this.keyboardAccelerators = new Object();
this.keyboardAcceleratorPlacementTarget = new Object();
this.keyboardAcceleratorPlacementMode = new Number();
this.keyTipTarget = new Object();
this.translationTransition = new Object();
this.opacityTransition = new Object();
this.transformMatrix = new Matrix4x4();
this.scaleTransition = new Object();
this.scale = new Vector3();
this.rotationTransition = new Object();
this.rotationAxis = new Vector3();
this.rotation = new Number();
this.translation = new Vector3();
this.centerPoint = new Vector3();
this.canBeScrollAnchor = new Boolean();
this.dispatcher = new Object();
};
cls.fillProperty = new Object();
cls.fontRenderingEmSizeProperty = new Object();
cls.fontUriProperty = new Object();
cls.indicesProperty = new Object();
cls.originXProperty = new Object();
cls.originYProperty = new Object();
cls.styleSimulationsProperty = new Object();
cls.unicodeStringProperty = new Object();
cls.colorFontPaletteIndexProperty = new Object();
cls.isColorFontEnabledProperty = new Object();
cls.actualHeightProperty = new Object();
cls.actualWidthProperty = new Object();
cls.dataContextProperty = new Object();
cls.flowDirectionProperty = new Object();
cls.heightProperty = new Object();
cls.horizontalAlignmentProperty = new Object();
cls.languageProperty = new Object();
cls.marginProperty = new Object();
cls.maxHeightProperty = new Object();
cls.maxWidthProperty = new Object();
cls.minHeightProperty = new Object();
cls.minWidthProperty = new Object();
cls.nameProperty = new Object();
cls.styleProperty = new Object();
cls.tagProperty = new Object();
cls.verticalAlignmentProperty = new Object();
cls.widthProperty = new Object();
cls.requestedThemeProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.allowFocusWhenDisabledProperty = new Object();
cls.focusVisualMarginProperty = new Object();
cls.focusVisualPrimaryBrushProperty = new Object();
cls.focusVisualPrimaryThicknessProperty = new Object();
cls.focusVisualSecondaryBrushProperty = new Object();
cls.focusVisualSecondaryThicknessProperty = new Object();
cls.actualThemeProperty = new Object();
cls.holdingEvent = new Object();
cls.isDoubleTapEnabledProperty = new Object();
cls.isHitTestVisibleProperty = new Object();
cls.isHoldingEnabledProperty = new Object();
cls.isRightTapEnabledProperty = new Object();
cls.keyDownEvent = new Object();
cls.keyUpEvent = new Object();
cls.manipulationCompletedEvent = new Object();
cls.manipulationDeltaEvent = new Object();
cls.isTapEnabledProperty = new Object();
cls.manipulationInertiaStartingEvent = new Object();
cls.manipulationModeProperty = new Object();
cls.manipulationStartedEvent = new Object();
cls.manipulationStartingEvent = new Object();
cls.opacityProperty = new Object();
cls.pointerCanceledEvent = new Object();
cls.pointerCaptureLostEvent = new Object();
cls.pointerCapturesProperty = new Object();
cls.pointerEnteredEvent = new Object();
cls.pointerExitedEvent = new Object();
cls.pointerMovedEvent = new Object();
cls.pointerPressedEvent = new Object();
cls.pointerWheelChangedEvent = new Object();
cls.projectionProperty = new Object();
cls.renderTransformOriginProperty = new Object();
cls.renderTransformProperty = new Object();
cls.rightTappedEvent = new Object();
cls.dragEnterEvent = new Object();
cls.tappedEvent = new Object();
cls.transitionsProperty = new Object();
cls.useLayoutRoundingProperty = new Object();
cls.visibilityProperty = new Object();
cls.allowDropProperty = new Object();
cls.cacheModeProperty = new Object();
cls.clipProperty = new Object();
cls.doubleTappedEvent = new Object();
cls.pointerReleasedEvent = new Object();
cls.dragLeaveEvent = new Object();
cls.dragOverEvent = new Object();
cls.dropEvent = new Object();
cls.shadowProperty = new Object();
cls.compositeModeProperty = new Object();
cls.canDragProperty = new Object();
cls.transform3DProperty = new Object();
cls.accessKeyProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.contextFlyoutProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.highContrastAdjustmentProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.lightsProperty = new Object();
cls.xYFocusDownNavigationStrategyProperty = new Object();
cls.xYFocusKeyboardNavigationProperty = new Object();
cls.xYFocusLeftNavigationStrategyProperty = new Object();
cls.xYFocusRightNavigationStrategyProperty = new Object();
cls.xYFocusUpNavigationStrategyProperty = new Object();
cls.tabFocusNavigationProperty = new Object();
cls.gettingFocusEvent = new Object();
cls.losingFocusEvent = new Object();
cls.noFocusCandidateFoundEvent = new Object();
cls.characterReceivedEvent = new Object();
cls.previewKeyDownEvent = new Object();
cls.previewKeyUpEvent = new Object();
cls.bringIntoViewRequestedEvent = new Object();
cls.contextRequestedEvent = new Object();
cls.keyTipTargetProperty = new Object();
cls.keyboardAcceleratorPlacementModeProperty = new Object();
cls.keyboardAcceleratorPlacementTargetProperty = new Object();
cls.canBeScrollAnchorProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.Glyphs = Glyphs;
Hyperlink = (function () {
var cls = function Hyperlink() {
this.navigateUri = new Object();
this.underlineStyle = new UnderlineStyle();
this.xYFocusUp = new Object();
this.xYFocusRight = new Object();
this.xYFocusLeft = new Object();
this.xYFocusDown = new Object();
this.elementSoundMode = new Number();
this.xYFocusUpNavigationStrategy = new Number();
this.xYFocusRightNavigationStrategy = new Number();
this.xYFocusLeftNavigationStrategy = new Number();
this.xYFocusDownNavigationStrategy = new Number();
this.focusState = new Number();
this.tabIndex = new Number();
this.isTabStop = new Boolean();
this.inlines = new InlineCollection();
this.language = new String();
this.foreground = new Object();
this.fontWeight = new FontWeight();
this.fontStyle = new Number();
this.fontStretch = new Number();
this.fontSize = new Number();
this.fontFamily = new Object();
this.characterSpacing = new Number();
this.contentEnd = new TextPointer();
this.contentStart = new TextPointer();
this.elementEnd = new TextPointer();
this.elementStart = new TextPointer();
this.name = new String();
this.isTextScaleFactorEnabled = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.accessKey = new String();
this.textDecorations = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.keyTipHorizontalOffset = new Number();
this.isAccessKeyScope = new Boolean();
this.accessKeyScopeOwner = new Object();
this.xamlRoot = new Object();
this.dispatcher = new Object();
};
cls.prototype.focus = function focus(value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="Number">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.navigateUriProperty = new Object();
cls.underlineStyleProperty = new Object();
cls.elementSoundModeProperty = new Object();
cls.xYFocusDownProperty = new Object();
cls.xYFocusLeftProperty = new Object();
cls.xYFocusRightProperty = new Object();
cls.xYFocusUpProperty = new Object();
cls.focusStateProperty = new Object();
cls.xYFocusDownNavigationStrategyProperty = new Object();
cls.xYFocusLeftNavigationStrategyProperty = new Object();
cls.xYFocusRightNavigationStrategyProperty = new Object();
cls.xYFocusUpNavigationStrategyProperty = new Object();
cls.isTabStopProperty = new Object();
cls.tabIndexProperty = new Object();
cls.characterSpacingProperty = new Object();
cls.fontFamilyProperty = new Object();
cls.fontSizeProperty = new Object();
cls.fontStretchProperty = new Object();
cls.fontStyleProperty = new Object();
cls.fontWeightProperty = new Object();
cls.foregroundProperty = new Object();
cls.languageProperty = new Object();
cls.isTextScaleFactorEnabledProperty = new Object();
cls.accessKeyProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.textDecorationsProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.Hyperlink = Hyperlink;
HyperlinkClickEventArgs = (function () {
var cls = function HyperlinkClickEventArgs() {
this.originalSource = new Object();
};
return cls;
}) ();
exports.HyperlinkClickEventArgs = HyperlinkClickEventArgs;
InlineCollection = (function () {
var cls = function InlineCollection() {
};
cls.prototype.getAt = function getAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Inline" />
/// </signature>
return new Inline();
}
cls.prototype.getView = function getView() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.indexOf = function indexOf(value, index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="Inline">A param.</param>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.prototype.setAt = function setAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="Inline">A param.</param>
/// </signature>
}
cls.prototype.insertAt = function insertAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="Inline">A param.</param>
/// </signature>
}
cls.prototype.removeAt = function removeAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// </signature>
}
cls.prototype.append = function append(value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="Inline">A param.</param>
/// </signature>
}
cls.prototype.removeAtEnd = function removeAtEnd() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.clear = function clear() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.getMany = function () {
}
cls.prototype.replaceAll = function replaceAll(items) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="items" type="Array<Object>">A param.</param>
/// </signature>
}
cls.prototype.first = function first() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.InlineCollection = InlineCollection;
InlineUIContainer = (function () {
var cls = function InlineUIContainer() {
this.child = new Object();
this.language = new String();
this.foreground = new Object();
this.fontWeight = new FontWeight();
this.fontStyle = new Number();
this.fontStretch = new Number();
this.fontSize = new Number();
this.fontFamily = new Object();
this.characterSpacing = new Number();
this.contentEnd = new TextPointer();
this.contentStart = new TextPointer();
this.elementEnd = new TextPointer();
this.elementStart = new TextPointer();
this.name = new String();
this.isTextScaleFactorEnabled = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.accessKey = new String();
this.textDecorations = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.keyTipHorizontalOffset = new Number();
this.isAccessKeyScope = new Boolean();
this.accessKeyScopeOwner = new Object();
this.xamlRoot = new Object();
this.dispatcher = new Object();
};
cls.characterSpacingProperty = new Object();
cls.fontFamilyProperty = new Object();
cls.fontSizeProperty = new Object();
cls.fontStretchProperty = new Object();
cls.fontStyleProperty = new Object();
cls.fontWeightProperty = new Object();
cls.foregroundProperty = new Object();
cls.languageProperty = new Object();
cls.isTextScaleFactorEnabledProperty = new Object();
cls.accessKeyProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.textDecorationsProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.InlineUIContainer = InlineUIContainer;
Italic = (function () {
var cls = function Italic() {
this.inlines = new InlineCollection();
this.language = new String();
this.foreground = new Object();
this.fontWeight = new FontWeight();
this.fontStyle = new Number();
this.fontStretch = new Number();
this.fontSize = new Number();
this.fontFamily = new Object();
this.characterSpacing = new Number();
this.contentEnd = new TextPointer();
this.contentStart = new TextPointer();
this.elementEnd = new TextPointer();
this.elementStart = new TextPointer();
this.name = new String();
this.isTextScaleFactorEnabled = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.accessKey = new String();
this.textDecorations = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.keyTipHorizontalOffset = new Number();
this.isAccessKeyScope = new Boolean();
this.accessKeyScopeOwner = new Object();
this.xamlRoot = new Object();
this.dispatcher = new Object();
};
cls.characterSpacingProperty = new Object();
cls.fontFamilyProperty = new Object();
cls.fontSizeProperty = new Object();
cls.fontStretchProperty = new Object();
cls.fontStyleProperty = new Object();
cls.fontWeightProperty = new Object();
cls.foregroundProperty = new Object();
cls.languageProperty = new Object();
cls.isTextScaleFactorEnabledProperty = new Object();
cls.accessKeyProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.textDecorationsProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.Italic = Italic;
LineBreak = (function () {
var cls = function LineBreak() {
this.language = new String();
this.foreground = new Object();
this.fontWeight = new FontWeight();
this.fontStyle = new Number();
this.fontStretch = new Number();
this.fontSize = new Number();
this.fontFamily = new Object();
this.characterSpacing = new Number();
this.contentEnd = new TextPointer();
this.contentStart = new TextPointer();
this.elementEnd = new TextPointer();
this.elementStart = new TextPointer();
this.name = new String();
this.isTextScaleFactorEnabled = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.accessKey = new String();
this.textDecorations = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.keyTipHorizontalOffset = new Number();
this.isAccessKeyScope = new Boolean();
this.accessKeyScopeOwner = new Object();
this.xamlRoot = new Object();
this.dispatcher = new Object();
};
cls.characterSpacingProperty = new Object();
cls.fontFamilyProperty = new Object();
cls.fontSizeProperty = new Object();
cls.fontStretchProperty = new Object();
cls.fontStyleProperty = new Object();
cls.fontWeightProperty = new Object();
cls.foregroundProperty = new Object();
cls.languageProperty = new Object();
cls.isTextScaleFactorEnabledProperty = new Object();
cls.accessKeyProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.textDecorationsProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.LineBreak = LineBreak;
Paragraph = (function () {
var cls = function Paragraph() {
this.textIndent = new Number();
this.inlines = new InlineCollection();
this.textAlignment = new Number();
this.margin = new Thickness();
this.lineStackingStrategy = new Number();
this.lineHeight = new Number();
this.horizontalTextAlignment = new Number();
this.language = new String();
this.foreground = new Object();
this.fontWeight = new FontWeight();
this.fontStyle = new Number();
this.fontStretch = new Number();
this.fontSize = new Number();
this.fontFamily = new Object();
this.characterSpacing = new Number();
this.contentEnd = new TextPointer();
this.contentStart = new TextPointer();
this.elementEnd = new TextPointer();
this.elementStart = new TextPointer();
this.name = new String();
this.isTextScaleFactorEnabled = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.accessKey = new String();
this.textDecorations = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.keyTipHorizontalOffset = new Number();
this.isAccessKeyScope = new Boolean();
this.accessKeyScopeOwner = new Object();
this.xamlRoot = new Object();
this.dispatcher = new Object();
};
cls.textIndentProperty = new Object();
cls.lineHeightProperty = new Object();
cls.lineStackingStrategyProperty = new Object();
cls.marginProperty = new Object();
cls.textAlignmentProperty = new Object();
cls.horizontalTextAlign