本文整理汇总了C#中Y_类的典型用法代码示例。如果您正苦于以下问题:C# Y_类的具体用法?C# Y_怎么用?C# Y_使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Y_类属于命名空间,在下文中一共展示了Y_类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: _positionLegendItems
/// <summary>
/// Displays items vertically in a legend.
/// </summary>
protected void _positionLegendItems(Y_.Array items, Y_.DataType_.Number maxWidth, Y_.DataType_.Number maxHeight, Y_.DataType_.Number totalWidth, Y_.DataType_.Number totalHeight, Y_.DataType_.Number padding, Y_.DataType_.Number horizontalGap, Y_.DataType_.Number verticalGap, object hAlign, object vAlign){}
示例2: apply
/// <summary>
/// Applies a schema to an array of data, returning a normalized object
/// with results in the `results` property. The `meta` property of the
/// response object is present for consistency, but is assigned an empty
/// object. If the input data is absent or not an array, an `error`
/// property will be added.
/// The input array is expected to contain objects, arrays, or strings.
/// If _schema_ is not specified or _schema.resultFields_ is not an array,
/// `response.results` will be assigned the input array unchanged.
/// When a _schema_ is specified, the following will occur:
/// If the input array contains strings, they will be copied as-is into the
/// `response.results` array.
/// If the input array contains arrays, `response.results` will contain an
/// array of objects with key:value pairs assuming the fields in
/// _schema.resultFields_ are ordered in accordance with the data array
/// values.
/// If the input array contains objects, the identified
/// _schema.resultFields_ will be used to extract a value from those
/// objects for the output result.
/// _schema.resultFields_ field identifiers are objects with the following properties:
/// * `key` : <strong>(required)</strong> The locator name (String)
/// * `parser`: A function or the name of a function on `Y.Parsers` used
/// to convert the input value into a normalized type. Parser
/// functions are passed the value as input and are expected to
/// return a value.
/// If no value parsing is needed, you can use strings as identifiers
/// instead of objects (see example below).
/// </summary>
public object apply(Y_.Array data){return null;}
示例3: _update
/// <summary>
/// AOP method, invoked after the host's _uiScrollTo method,
/// to position and resize the scroll bars
/// </summary>
protected void _update(Y_.DataType_.Number x, Y_.DataType_.Number y, Y_.DataType_.Number duration, object easing){}
示例4: lineTo
/// <summary>
/// Draws a line segment using the current line style from the current drawing position to the specified x and y coordinates.
/// </summary>
public void lineTo(Y_.DataType_.Number point1, Y_.DataType_.Number point2){}
示例5: quadraticCurveTo
/// <summary>
/// Draws a quadratic bezier curve.
/// </summary>
public void quadraticCurveTo(Y_.DataType_.Number cpx, Y_.DataType_.Number cpy, Y_.DataType_.Number x, Y_.DataType_.Number y){}
示例6: drawCircle
/// <summary>
/// Draws a circle. Used internally by `CanvasCircle` class.
/// </summary>
protected void drawCircle(Y_.DataType_.Number x, Y_.DataType_.Number y, Y_.DataType_.Number r){}
示例7: drawEllipse
/// <summary>
/// Draws an ellipse.
/// </summary>
protected void drawEllipse(Y_.DataType_.Number x, Y_.DataType_.Number y, Y_.DataType_.Number w, Y_.DataType_.Number h){}
示例8: rad2deg
/// <summary>
/// Converts a radian value to a degree.
/// </summary>
public Y_.DataType_.Number rad2deg(Y_.DataType_.Number rad){return null;}
示例9: scalarMultiply
/// <summary>
/// Multiplies a matrix by a numeric value.
/// </summary>
public Y_.Array scalarMultiply(Y_.Array matrix, Y_.DataType_.Number multiplier){return null;}
示例10: slice
public NodeList slice(Y_.DataType_.Number begin, Y_.DataType_.Number end){return null;}
示例11: splice
public NodeList splice(Y_.DataType_.Number index, Y_.DataType_.Number howMany){return null;}
示例12: item
/// <summary>
/// Retrieves the Node instance at the given index.
/// </summary>
public Node item(Y_.DataType_.Number index){return null;}
示例13: getStartPoint
/// <summary>
/// Returns the starting y-coordinate for a column of legend items.
/// </summary>
protected Y_.DataType_.Number getStartPoint(Y_.DataType_.Number h, Y_.DataType_.Number totalHeight, object align, object padding){return null;}
示例14: _setColumnArrays
/// <summary>
/// Creates column and total height arrays used for displaying multiple columns of
/// legend items based on the items, available height and verticalGap for the legend.
/// </summary>
protected void _setColumnArrays(Y_.Array items, Y_.DataType_.Number limit, Y_.DataType_.Number verticalGap){}
示例15: getMinors
/// <summary>
/// Returns a matrix of minors based on a matrix, column index and row index.
/// </summary>
public Y_.Array getMinors(Y_.Array matrix, Y_.DataType_.Number columnIndex, Y_.DataType_.Number rowIndex){return null;}